Hola no está definido JavaScript

// wrong
console.log(hello);
//  fix
let hello;
console.log(hello);
Panicky Polecat