There are a couple of ways to initialize. The quick way:

Nice. We have 6 elements so we need the array to have a size of 6.

To initialize we can put all elements in {} after the declaration.

Note: If we do not define a size and initialize like this, the program will create an array of size equal to the number of elements given.

Whoops! We need our array to be big enough for all the elements given!