Concept Flow - Indexing returns views not copies
Create original array
Index array to get subset
Subset is a view (shares data)
Modify subset
Original array changes too
If copy made, original unchanged
Indexing an array returns a view that shares data with the original array. Changing the view changes the original.