<html>
<body>
<h1>JavaScript Statements</h1>
<h2>The for Loop</h2>
<p>Loop over an array in descending order (negative increment):</p>
<p id="demo"></p>
<script>
const cars = ["BMW", "Volvo", "Saab", "Ford"];
let text = "";
for (let i = cars.length - 1; i >= 0; i--) {
text += cars[i] + "<br>";
}
document.getElementById("demo").innerHTML = text;
</script>
</body>
</html>