//an array of String objects, note that must have a a reference to the String object, in other words, an array of String objects is really an array of references to String ojects, Fig 8-13 public class eg08StringArray { public static void main(String[] args) { String[] months = {"Jan","Feb","Mar"}; int[] days = {31, 28, 31}; for (int index = 0; index