Introduction
Arrays let you keep many pieces of related information together in one place. This helps you organize and work with lists of data easily.
You want to store a list of filenames to process one by one.
You need to keep track of multiple user inputs in a script.
You want to save a list of server IP addresses to connect to.
You have a set of options or choices to check in your script.
You want to loop through a list of items to perform the same action.