What is the result of the operation console.log(x); if the code is let x = 5; console.log(x);?
console.log(x);
let x = 5; console.log(x);
5
Error
null
Undefined