This is my second week learning swift.
Currently, I am trying to create a quote app that generates random quotes. I am storing the quotes in an array. So far the app works well, however, I don't think it's efficient to store the quotes in the view controller file, especially if I am planning on listing 100+ quotes. I came across a comment somewhere suggesting storing a large array of strings in a database or a plist file. I just want to know if someone could suggest the best way to store quotes in a database or something. Any help would be appreciated.