Generate random numeric, between min and max.
int numericBetween(int min, int max) { Random _rnd = Random(); return min + _rnd.nextInt(max - min); }