Add a variable and a string to display a message in a game.

<html>
<body>
<h3>RallyRaces</h3>
<script>
var player1 = "Riley";
var player2 = "Reese";
console.log(player1 + " VS " + player2);
</script>
<body>
</html>]]>

Make sure to pick player1, followed by " VS ".