static int randomNumber({int maxValue = 100}) { Random random = Random(); int number = random.nextInt(maxValue); return number; }