The instructions for this exercise are in the comments at the top of the code.
<script>
// Add a new property "average" whose value is the average of the three prices.
// Print the value of the "average" property. Your program must work correctly
// even if I change the values of the prices before testing!
var price1 = 3.33;
var price2 = 1.23;
var price3 = 3.45;
// Add your code here
</script>