The JavaScript runs automatically when the webpage displays. Find the output of console.log(username) in the Output tab.

<html>
<body>
<h3>Open the output tab!</h3>
<script>
var username = "Lee";
var tweets = 50;
console.log(username);
</script>
</body>
</html>]]>

Make sure to pick console.log, followed by username.