iOS Swift - Concurrency
What will be printed by this Swift code using async/await?
func fetchNumber() async -> Int {
return 5
}
Task {
let number = await fetchNumber()
print(number)
}