└── Element of an array /Element of an array: -------------------------------------------------------------------------------- 1 | public class Main { 2 | public static void main(String[] args) { 3 | int[] myArray = {1, 2, 3, 4, 5}; 4 | System.out.println("The first element is: " + myArray[1]); 5 | System.out.println("The fourth element is: " + myArray[4]); 6 | } 7 | } 8 | --------------------------------------------------------------------------------