iOS Swift - Concurrency
Identify the error in this Swift async code:
func loadData() async -> String {
return "Data"
}
let result = loadData()
print(result)