fetch request core data
// entire usable func for fetching data
func loadData() {
if let context = (UIApplication.shared.delegate as? AppDelegate)?.persistentContainer.viewContext {
if let hellos = try? context.fetch(Hello.fetchRequest()) as? [Hello] {
}
}
}