You need to implement two methods using ListIterator.
- The method
iterateOverListshould iterate over the elements from the beginning to the end and add"Hop"after each"Hip". - The method
printListshould print all elements of the list (on a new line).
Please, use ListIterators to solve this problem.