Hoisting and Execution Context

How does the temporal dead zone affect accessing let variables?
console.log(x);
let x = 10;
Next Question (3/20)