Async/Await Syntax

What will this code log to the console?
async function example() {
  const result = await Promise.resolve(42);
  return result;
}

console.log(await example());
Next Question (2/20)