Привет, не определенный JavaScript
// wrong
console.log(hello);
// fix
let hello;
console.log(hello);
Panicky Polecat
// wrong
console.log(hello);
// fix
let hello;
console.log(hello);