Source Code:
(back to article)
<?php $number = 0; while ($number < 10) { $number = rand(1, 20); echo $number . PHP_EOL; }
Result:
Report an issue