>>714757849in programming you sometimes want a list of related things.
we call one popular version of that list, an "array".
the most common form of an array, is a list of individual characters that make up a person's name
"John", as an array would look like: ['J', 'o', 'h', 'n']
arrays come with a way to get an individual item, we call that Indexing.
to get the 'J' in "John", you'd index into its first element with: [0]
to index into the second element you do: [1]
With this info, you can now deduce that Roach Man has one giant array to maintain his story. For extra credit, you can think about how he's going to deal with story edits and the effect those have on that giant array.