While writing a code for printing out random numbers ranging from 0 to 99, I had faced some difficulties. I tried to change the condition in the for statement to e<100, however, it had occurred an error. Where should I put the conditions in order for my output to show numbers between 0 to 99?
public class EvensOdds {
public static void printArray(int[] ear) {
    
    System.out.println("ODD NUMBERS : ");
    for (int e = 0; e<ear.length ; e ++) {
        ear[e] = (int)(Math.random()* 10);
            if(ear[e]%2!=0)
            System.out.print(ear[e] + "  ");
    }
    System.out.println("\n" + "EVEN NUMBERS : ");
    for (int e = 0; e<ear.length ; e ++) {
        ear[e] = (int)(Math.random()* 10);
            if(ear[e]%2==0)
            System.out.print(ear[e] + "  ");
    }
    System.out.println();
  }
public static void main(String[] args) {
    int[] numberArray = new int[25];
    printArray(numberArray);
}
}
 
     
    