// Accessing array elements using for loop public class AccessingArrayElements {    public static void main(String[] args)    {       int[] arrNum = {25, 23, 15, 20, 24};       for(int a = 0; a < arrNum.length; a++)       {          System.out.println(arrNum[a]);       }    } }

Read more of this post