Mental Model
When two keys want to go to the same spot in a table, we keep them in a small linked list at that spot.
Analogy: Imagine a mailbox with several slots. If two letters come for the same slot, we put them in a small pile inside that slot instead of losing one.
Hash Table: Index 0 -> null Index 1 -> 21 -> 41 -> null Index 2 -> 32 -> null Index 3 -> null Index 4 -> 14 -> null