<?php $nums = array(1, 7, 8, 9); $key = array_rand($nums); echo $nums[$key] . PHP_EOL; shuffle($nums); echo $nums[0] . PHP_EOL;
You have javascript disabled. You will not be able to edit any code.