srand(12345); $randomNumbers = []; for ($i = 0; $i < 5; ++$i) { $randomNumbers[] = rand(1, 100); } print_r($randomNumbers);