Arrays of objects
Remember: Java allows arrays of more than ints
Suppose you would like an array of strings:String[] words = new String[25];
We could declare an array of employees, as we saw previously:Employee[] workers = new Employee[25];workers[3] = new Employee(�Millett�, 1999);workers[3].setSalary(50000);