Originally posted by MP Olsen:
In my "Stuff" class, my pop method needs to decrement by one each time subtracting the last word and returning it to be printed.
All it does at present is return the last value, the elements are never removed, so your while loop on isEmpty will always be false, even after you fix the method so it doesn't only return false.
Soooo, start with that, fix isEmpty, pop should remove an element.
I haven't looked at the rest but that might be it, feel free to ask again