JavaScript espere a que la función devuelva el valor
// function to resolve the promise has to be async
async function waitForResult() {
// using await keyword
const result = await loadResults();
console.log(result);
}
SunflowerToad