function findLatest() {
    fetch('http://ergast.com/api/f1/2023/12.json')
    .then(res => res.json())
    .then(data => console.log(data))
}