How to Immutably Update Arrays
This lesson covers how to do immutable updates on arrays in a few different ways:
- Adding an item to the beginning or end
- Adding an item to the middle
- Removing an item with `filter`
- Changing one or more items with `map`