Mental Model
When two keys want the same spot in a table, we keep a list there to hold both.
Analogy: Imagine a mailbox with several slots. If two letters come for the same slot, you put them in a small basket inside that slot instead of throwing one away.
Hash Table: [0] -> 15 -> 25 -> null [1] -> null [2] -> 7 -> 12 -> null [3] -> null [4] -> null
