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