getRandomIndex static method

int getRandomIndex(
  1. int max
)

Implementation

static int getRandomIndex(int max) {
  return random.nextInt(max - 1);
}