<?php $games = [["First", 1.14], ["2nd", 1.18], ["3rd", 1.22]]; $rand1 = array_rand($games); $rand2 = array_rand($games); $val1 = $games[$rand1][1]; $val2 = $games[$rand2][1]; echo sprintf( "The product of '%s' (%f) and '%s' (%f) is %f", $games[$rand1][0], $val1, $games[$rand2][0], $val2, $val1 * $val2 );
You have javascript disabled. You will not be able to edit any code.