Swift - Functions
Find the error in this Swift code:
func greet(_ person: String, from hometown: String) {
print("Hello \(person)! Glad you came from \(hometown).")
}
greet("John", "New York")