Concept Flow - Array slice and splice
Start with original array
Choose slice or splice
Slice: Extract part
Return new array
End
You start with an array, then choose slice to get a part without changing the original, or splice to remove/insert parts and change the original.