## Before
A *Linked List* is a variable-length, one-dimensional data structure that stores data in a linear fashion. Unlike an [[Array]], this data structure does not use indices to access stored data. Instead, one must traverse the data structure because each node in a Linked List holds a reference to the next node.
## After