Concept Flow - Array modification (push, pop, shift, unshift)
Start with array
Choose operation
Add end
Array updated
End
Start with an array, pick one of four operations: push adds to end, pop removes from end, shift removes from start, unshift adds to start, then array updates.