This site is mobile accessible. Press the "Tap Here" button to use a smaller font-size.

Smartphone icons created by Freepik - Flaticon

JS Hoisting

With const, you cannot use a variable before it is declared.

Try to remove the //.

carName = "Volvo";
//const carName;
document.getElementById("demo").innerHTML = carName;