In this exercise you will declare variables using const and let following best practices. Remember:
const for values that should not be reassigned.let for values that will change.const named greeting with the string value "Hello, JavaScript!".let named score with the initial value 0.score by 10 using +=.#output paragraph — format: "Hello, JavaScript! Score: 10".Use const when the value should not change, let when it will.