The shoppingList variable is declared as “an array of String values”, written as String[]. Because
this particular array has specified a value type of String, it is only allowed to store String
values. Here, the shoppingList array is initialized with two String values ("Eggs" and "Milk"),
written within an array literal.