Great work! Run your code and tap the Upvote button a few times to see it in action.

<html>
<head>
  <script>var counter = 3;
function upvote() {
counter  = counter + 1;

var votes = document.getElementById("votes");
votes.innerHTML = counter + " votes";
}</script>
</head>
<body>
  <h1>Bear of the Year</h1>
  <img src="https://mimo.app/r/panda.png"/>
  <p><em>Nom nom nom</em></p>
  <p id="votes">3 votes</p>
  <button onclick="upvote()">Upvote</button>
</body>
</html>]]>