In the implementation of MyLinkedList, which of the following are true?
◦ Node is defined as an inner class inside MyLinkedList.
◦ Node has a property named next that links to the node after this node.
◦ Node has a property named element that stores an element.
◦ Node is defined as a static inner class inside MyLinkedList because it does not reference any instance data fields in MyLinkedList.