math random with range code example
Example 1: random in a range js
const rnd = (min,max) => { return Math.floor(Math.random() * (max - min + 1) + min) };
Example 2: math.random every number no range
int jj = reader.nextInt();
const rnd = (min,max) => { return Math.floor(Math.random() * (max - min + 1) + min) };
int jj = reader.nextInt();