Consider the following program. Which of the following is NOT a possible output when this runs?

function start(){
var mysteryNum = 10 * Randomizer.nextInt(2,10);
println(mysteryNum);
}

50

30

10

90

The output 90 is NOT possible when this program runs.