We have a list of some Persons:
case class Person(name: String, age: Int, gender: String)
val people: List[Person]
Transform people to a new list of tuples with the name age, using only a lambda function. Save the result to the nameAndAge list.