Arrays let you store multiple values in a single variable. Instead of creating item1, item2, item3, you create one array that holds them all.
In this section, you'll create arrays, access elements, and use useful methods like push, pop, map, and filter. These patterns appear in almost every JavaScript program.