i method

int i(
  1. int min,
  2. int max
)

Implementation

int i(int min, int max) {
  return nextInt(max - min) + min;
}