Introduction
Arrays help you store many values of the same type together, like a row of mailboxes holding letters.
When you know exactly how many items you want to store.
When you want to keep items in order and access them by position.
When you want to group related data, like daily temperatures for a week.
When you want to quickly access items using their index number.