Initializer Lists
You can initialize the elements of an array just as you can initialize a variable
Exampleint[] grades = {88, 92, 65, 77, 33};
grades is now an array of 5 integers with values as shown
Such an initializer list can only be used when the array is first declared