public static void main(String[] args) {
for(int i = 0; i < 10000; i++) {
long number = (long) Math.floor(Math.random() * 90000000) + 100000000L;
System.out.println(number);
}
}
The above code doesn't generate 10,000 random numbers. Why?