Hi my current code is
int randomNumber = random.nextInt(899) + 100;
My teacher said: Also, the formula for the random number will yield a number in the range of
100 to 998 vs. 100 to 999. (off-by-one error).
So I need to make it so it puts it between 100 - 999. But, I'm confused on how that works exactly.