Array Basics
Know
An array has a fixed length set at creation and is accessed by index from zero. Its elements start at a default value rather than being empty.
Apply
State the length and the valid index range before writing any loop over it.
Watch out
Confusing length, which is a field on arrays, with length(), which is a method on Strings.
Study move
Declare arrays of three different types and state each default element value.
