Short hand form
Obviously this is tedious, so:
Person [] p = {new Person(), new person(),
new Person(), new Person()};
String s [] = {“John”, “Denise”, “Phoebe”};
Can have multi-dimensional arrays:
String f [] [] = { {“John”, “Denise”, “Phoebe”},
{“Paul”, “Fiona”, “Andrew”}};
But what does this really mean?