# Arrays

**Arrays** are multiple pieces of data stored in a single variable. Basically, a **list**.&#x20;

They are sometimes pictured as a one-column table with multiple rows.

Use an array where you’d use a list&#x20;\- shopping list, items in a bag, attendee list, etc.

You can also use them where you’d use a table&#x20;\- contact information, recipe ingredients, statistics, etc.&#x20;

You can...

[...create an array](https://hopemoore.gitbook.io/coding-for-creatives/glossary/arrays/creating-arrays)

.[..assign values to an array](https://hopemoore.gitbook.io/coding-for-creatives/glossary/arrays/assigning-values-to-arrays)

[...use arrays](https://hopemoore.gitbook.io/coding-for-creatives/glossary/arrays/using-array-elements)

[...create arrays inside of arrays](https://hopemoore.gitbook.io/coding-for-creatives/glossary/arrays/multi-dimensional-arrays)
