We now need to update our LocationViewController.
First, because we do not need it anymore, delete the following array that we created in the class:
let locations = ["Aspen", "Boston", "Charleston", "Chicago", "Houston", "Las Vegas", "Los Angeles", "Miami", "New Orleans", "New York", "Philadelphia", "Portland", "San Antonio", "San Francisco", "Washington District of Columbia"]
Next, since we need to create an instance of our data manager in this class, add the following above viewDidLoad():
let manager = LocationDataManager()
Inside viewDidLoad(), we want to fetch the data for the Table View, so add the following under super.viewDidLoad():
manager.fetch()
Now, your viewDidLoad() should look like the...