int getInt({int min = 0, int max = 10000}) { Random random = Random(); return min + random.nextInt(max - min); }