/* File: Joe Smith Gorge Bush John Lang ... Bruse Lee Alice Thomas April Adam Write the statements to read the first 5 names from above file to the array names[]. */ import java.util.Scanner; class TestArray4 { public static void main(String[] args) { Scanner input = new Scanner(System.in); String[] names = new String[15]; for(int i=0; i<5; i++) names[i] = input.nextLine(); // out the array for(int i=0; i<5; i++) System.out.println(names[i]); System.out.println("\n\nDone.\n\b"); } }