Introduction
Arrays hold a fixed number of items of the same type. Initializing an array means creating it and setting its starting values.
When you know the exact number of items you want to store.
When you want to store a list of fixed size, like days in a week or months in a year.
When you want to prepare a container to hold values before filling it later.
When you want to set default values for a group of items at once.