Multiple choice How do you create an array of 20 integers? int[20] myArray; int[] myArray = new int[20]; int myArray = [20]; int[] myArray = int[20]; Reveal answer Fill a bubble to check yourself B Correct answer Explanation In Java, arrays are objects and must be instantiated using the 'new' keyword followed by the data type and the size in square brackets. The correct syntax to declare and initialize an array of 20 integers is 'int[] myArray = new int[20];'.