Mental Model
A queue is a line where the first person in is the first person out. Using a linked list means each person holds a note pointing to the next person.
Analogy: Imagine a line of people waiting to buy tickets. The first person who arrives is the first to get the ticket and leave. Each person holds the hand of the next person, so you can move along the line easily.
front -> [node1] -> [node2] -> [node3] -> null rear ↑