halo tidak ditentukan javascript

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