Suppose you are working with the myStack and myQueue variables:
myStack := Stack{storage: []int{1, 2, 3, 4}}
myQueue := Queue{Stack{storage: []int{1, 2, 3, 4}}, Stack{}}
Match each Pop and Push operation with the effect it will have on the myQueue and myStack variables below: