> For the complete documentation index, see [llms.txt](https://hopemoore.gitbook.io/coding-for-creatives/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://hopemoore.gitbook.io/coding-for-creatives/glossary/arrays.md).

# 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](/coding-for-creatives/glossary/arrays/creating-arrays.md)

.[..assign values to an array](/coding-for-creatives/glossary/arrays/assigning-values-to-arrays.md)

[...use arrays](/coding-for-creatives/glossary/arrays/using-array-elements.md)

[...create arrays inside of arrays](/coding-for-creatives/glossary/arrays/multi-dimensional-arrays.md)
