Concept Flow - Modifying arrays
Start with array
Choose modification method
Add element (push, unshift)
Remove element (pop, shift, splice)
Change element (direct index assignment)
Array updated
Use updated array
We start with an array, pick a way to change it (add, remove, or update elements), then the array changes and we use the new version.