For a book exercise, I need to create a simple C++ container (mimicking that of std::vector) called Vec. However, I am having problems implementing a simple erase() method. My intention is to destroy the object within that index, then move back all elements after the index one spot down the list. For a book exercise, I need to create a simple