This workshop assumes the following class definitions:
- Node.java
- MyLinkedList.java (this is the class to which we'll add instance methods)
Add an instance method getFirstItem
in class MyLinkedList
that returns the data value held in the first node (if any). Return null
if there is nothing in the list.