let greeting = "Hello"; // 'let' means the variable can be reassigned const question = "How are you?"; // 'const' means the variable cannot be reassigned
let greeting = "Hello"; // 'let' means the variable can be reassigned const question = "How are you?"; // 'const' means the variable cannot be reassigned