The stub of remove() should look like this:
   Item LinkedQueue::remove() {
   }
The remove() method should behave as follows:
  1. If the queue is empty, throw an EmptyQueueException;
  2. Otherwise:
    1. Store the item in the oldest node (the one pointed to by myFirstPtr) into local variable result;
    2. Save the address of the oldest node in a local variable nPtr;
    3. Make myFirstPtr point at the next-oldest node in the queue (or nullptr if there is none);
    4. Set the myNextPtr member of the oldest node to nullptr;
    5. Deallocate the oldest node;
    6. Subtract 1 from mySize;
    7. Return result.