The stub of getTop() should look like this:
   Item Stack::getTop() const {
   }
Because myTop always contains the index of the next empty spot in the Stack (e.g., when the stack is empty, myTop == 0), getTop() method should return the item from myArray that is 1 less than the current value of myTop.