iOS Swift - Concurrency
Given the async sequence
numbers that yields 1, 2, 3, what will this code print?for await num in numbers {
print(num * 2)
}