function findLatest() {
    fetch('http://ergast.com/api/f1/2023/12/results.json')
    .then(res => res.json())
    .then(data => console.log(data.MRData.RaceTable.Races[0].Results))
}