var selectedColor =document.getElementById(\"colorChoice\").value;
var selectedStyle = document.getElementById(\"style\").value;
var selectedSize = document.getElementById(\"size\").value;
var orderMessage = \"Your order is: Color = \" +selectedColor
+ \"; Style = \" + selectedStyle
+ \"; Size = \" + selectedSize+\"\n\";
if (selectedStyle===\"Long-sleeve\")
//Add code to calculate the price and concatenate it to theorderMessage
//For example, \"The order is: Color = gray; Style=T-Shirt; Size =XL \nThe price is $12\"
//If the style and size are not available, then concatenate themessage that it is not available instead of a price.
// -- Notice: the color, style, and style is already storedvariables for you
// a t-shirt in any size is $9
// a long-sleeve t-shirt in adult sizes is $18
// a long-sleeve t-shirt is youth sizes is not available
// a tech shirt is is $12 except 2XL and 3XL which are $16.
alert(orderMessage);
//Next change this alert to write the order status to the HTMLpage.
}