Swift - Functions
Identify the error in this Swift function returning a tuple:
func divide(_ a: Int, _ b: Int) -> (quotient: Int, remainder: Int) {
let q = a / b
let r = a % b
return q, r
}