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 = 9000;
myString = "It's over ";
// Display variables
window.alert("Vegeta, what does the scouter say about his power?");
window.alert(myString + myNumber + "!!!!!!");
window.alert("What?! Nine thousand?!");
</script>