Linked lists are basically the networking pros of data structures. Each node is just chilling there like "Yeah, I don't know where the data ends, but I know the next guy who does." And that next node is like "Nah, but I know another guy" and so on until you hit that NULL pointer that's basically saying "end of the line, buddy."
It's the perfect representation of how linked lists work - no random access, just a chain of references where each element only has information about its immediate successor. Traversing a linked list is literally just following a trail of breadcrumbs from one shady connection to the next!