java gen random number with 2 int code example
Example 1: java generate random integer in range
import java.util.concurrent.ThreadLocalRandom;
// nextInt is normally exclusive of the top value,
// so add 1 to make it inclusive
int randomNum = ThreadLocalRandom.current().nextInt(min, max + 1);
Example 2: java random number generator in range
int rand = ThreadLocalRandom.current().nextInt(x,y);