I need to do something like this:
Section 1, Chapter 1 title is "Dogs"
Section 1, Chapter 2 title is "Cats"
Section 2, Chapter 1 title is: "Goldfish"
I want to be able to write it something like this, with arrays:
section[0].chapter[0] = "Dogs";
section[0].chapter[1] = "Cats";
section[1].chapter[0] = "Goldfish";