The starter code defines a Person class with a name and age. Define the
function findOldest(people: List<Person>, quantity: Int) so that it returns a
List<String> containing a given number (quantity) of oldest Persons from the
list people. The resulting List should contain names in alphabetical order.