Introduction
Arrays let you store many values in one place. Accessing array elements means getting the value you want from that list.
You have a list of filenames and want to open one by its position.
You store user names in an array and want to greet a specific user.
You keep a list of numbers and want to calculate something with one of them.
You want to loop through a list but also access elements by their index.
You want to update or check a specific item in a list stored in an array.