Bonjour n'est pas défini javascript

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