With the current Linked List implementation, is there a way to create a cycle? Meaning, if I have Linked List Nodes ``` [ 1, 9, 87, 5, 22] ``` can I reference the node at position 2 (value=87) with the tail node's (value-22) `next` property to create a cycle?