<html>
<body>
<h1>JavaScript Statements</h1>
<h2>The let Statement</h2>
<p>Assign 5 to x and 6 to y, and display the result of x + y:</p>
<p id="demo"></p>
<script>
let x = 5;
let y = 6;
document.getElementById("demo").innerHTML = x + y;
</script>
</body>
</html>