Given a LinkedList, return the value in the middle.
Sigiloso
Have a tracker Node that starts at the LinkedList's head and a counter integer. For-each loop through the LinkedList and increment the counter by 1 every loop iteration. Only increment the tracker Node ( ie. tracker = tracker.next() ) whenever counter % 2 == 0 and counter != 0. Return the tracker after the for-each loop finishes iterating.