I have been trying to get this relatively simple code to run in a web browser where it just prints out the answers to a handful of math problems. The code I have should work because I checked on w3schools and it is basically the same code except for the variables I added in it. Here is my code below for the HTML and JS files. I have the rest of the code in JavaScript commented out just to see if it'll work for the one I am trying to run first but everything looks like it checks out to me but I guess I am wrong. Please let me know what I am doing wrong and how to fix it.
var x = "9";
var y = "9";
var z = x * y;
document.getElementById("demo").innerHTML = z;
//let b = 56 / 12;
//console.log(b);
//let c = 281 % 9;
//console.log(c);
//let d = 18 / 0;
//console.log(d);
//let e = '56' + '92';
//console.log(e);
//let f = 42 == 52;
//console.log(f);
<!DOCTYPE js>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Activity 1</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="Activity-1.js"></script>
</head>
<body>
<p id="demo"></p>
<script>
</script>
</body>
</html>