whats wrong with this code, console says uncaught syntax error/unexpected identifier.
<html>
<!DOCTYPE html>
<html lang="en">
…
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<title> Detta är en hemsida </title>
</head>
<body>
<h1>this is the title</h1>
<script>
for (var i = 1; i <= 100 i++) {
console.log(i);
}
</script>
</body>
</html>