Swift - Functions
What will this Swift code print?
func swapValues(_ a: Int, _ b: Int) -> (Int, Int) {
(b, a)
}
let swapped = swapValues(5, 9)
print(swapped.0, swapped.1)