Display the sum of the level1 and level2 variables.

<html>
<body>
<h3>Web Mario</h3>
<script>
var level1 = 34;
var level2 = 15;
console.log(level1 + level2);
</script>
<body>
</html>]]>

Make sure to pick console followed by . and then log, +, ;.