An array is a container for a fixed number of values of a single type.

Let's create an array that we'll use to hold a bunch of names!

Perfect! We declare arrays just like regular variables except. The only difference is that we put brackets after the type.

Wouldn't it make more sense to create a String-type array? After all, we're going to put names in it.