iOS Swift - Concurrency
What is the issue with this Swift code using structured concurrency?
func loadStrings() async {
let group = withTaskGroup(of: String.self) { group in
group.addTask { "Swift" }
}
print(await group.next())
}