function getOldestPersonInBooking(ages: number[]): number { console.log("ok"); throw new Error("TODO! Perhaps we can use Math.max() for this?"); } const ticketAges = [5, 25, 30]; console.log(getOldestPersonInBooking(ticketAges));