Olá, JavaScript não está definido

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