Mental Model
A node is a small box that holds data and a pointer to the next box, linking them like a chain.
Analogy: Imagine a treasure hunt where each clue points you to the next clue, forming a chain of clues to follow.
Node1[data|->] -> Node2[data|->] -> Node3[data|->] -> null
