At this point, it’s very difficult to continue writing more stories without creating some sort of a structure that associates the choices with the story.
We have already created a folder called Model and inside there is a file called Story.swift, modify this file to create a Struct called Story that describes the structure of a story, including properties for the story title, choice1 and choice2.
If successful, you should be able to replace the three constants (story0, choice1 and choice2) in ViewController.swift with a single line that creates a new story from the Story struct, like so:
Instead of creating separate variables to store more stories, create an Array called stories that contains a total of 3 stories. These will correspond to the next stages in the story.
Fix the errors in viewDidLoad().