Gets a random int between min and max.
min
max
static int getInt(int min, int max) { return min + random.nextInt(max - min); }