Which of the following returns a random number between 1 and 99?

randomInt(1, 99)

randInt(1, 99)

Randomizer.nextInt(1, 99)

Randomizer.int(1, 99)

The correct answer is `Randomizer.nextInt(1, 99)`.