@numbers = (2,3,4,5); $total = 1; for(@numbers){ $total = ($total * $_); } print $total;