Concept Flow - Array push and pop
Start with empty array
Push element
Array grows by 1
Push more elements?
Yes→Repeat Push
No
Pop element
Array shrinks by 1
Pop more elements?
Yes→Repeat Pop
No
End
Start with an array, add elements with push to grow it, then remove elements with pop to shrink it.