Concatenation

<script>
//concatenation
//ask user for name
//Ryan Chen, 09/07
var userName;
var greeting;
userName = prompt("What is your name?");
greeting = ("Hi, " + userName + "!!");
alert(greeting);
</script>