Generates a random integer between min (inclusive) and max (exclusive).
min
max
int uniformInt(int min, int max) { return min + _random.nextInt(max - min); }