Swift - Functions
Identify the error in this Swift code snippet:
func add(_ a: Int, _ b: Int) -> Int {
return a + b
}
let sum = add(3, 4)
let operation = add(3, 4)
print(operation(5, 6))