The stub of push() should look like this:
   void Stack::push(const Item& it) {
   }
The push() method should behave as follows:
  1. Store it in the entry of myArray whose index is myTop.
  2. Add 1 to myTop.