Swift - Data Types
Given a function that returns a tuple with a person's name and age, how can you extract these values into separate variables?
func getPerson() -> (String, Int) {
return ("Emma", 28)
}
// Extract values here