✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
What will be the output of this code?
let sayHello = 'Hi there';
const sayGoodbye = 'Goodbye';
const speakItalian = () => {
sayHello = 'Ciao!';
console.log(sayHello);
console.log(sayGoodbye);
};