Async/Await Syntax

Why might this code cause an error?
let value = await Promise.resolve(42);
console.log(value);
Next Question (9/20)