Assume that you have implemented a sequence class. Describe the mySequence object (i.e., items with the correct order and the position of the current index) after each line of the following code
sequence mySequence;
mySequence.insert(3)
mySequence.insert(2);
mySequence.attach(10);
mySequece.advance();
mySequence.attach(11);
mySequence.insert(4);
mySequence.insert(6);
mySequece.advance();
mySequence.remove_current();
mySequence.insert(9);