Hoisting and Execution Context

What will be the output of hoisting with var declarations?
console.log(x);
var x = 5;
Next Question (2/20)