iOS Swift - Networking
Identify the error in this Swift async GET request code:
func load() async {
let url = URL(string: "https://api.example.com")!
let (data, response) = URLSession.shared.data(from: url)
print(String(data: data, encoding: .utf8) ?? "No data")
}