When I open up the following file with my firefox browser, nothing is outputted on my screen. What am I doing wrong?
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<script>
var mystring="hello world";
console.log(mystring);
</script>
</head>
<body>
</body>
</html>