Generate random number between min and max
int randomNumber(int min, int max) { return min + Random().nextInt(max - min); }