For this assignment create code to join quotes and variables. To do so, you will need to use the concatination + symbol.
<script language="javascript" type="text/javascript">
// First let's declare a few variables
// Declare variables
myNumber = 7;
myString = "Damg we won ";
// Display variables
window.alert("Zlatan, What was the score?");
window.alert(myString + myNumber + "!!!!!!");
window.alert("WOW?! That's a smash?!");
</script>