Concept Flow - Slicing with start:stop:step
Start with array
Apply slice start:stop:step
Calculate indices from start to stop by step
Extract elements at these indices
Return sliced array
We take an array, pick elements starting at 'start', up to but not including 'stop', stepping by 'step', and return those elements.