<?php
$randomScore = rand(0,4); // random score between 0-4
if ($randomScore === 0) {
echo '0 Points, please try again';
} elseif ($randomScore === 1) {
echo '1 Point, Try more';
} elseif ($randomScore === 2) {
echo '2 Points, Nice!';
} elseif ($randomScore === 3) {
echo '3 Points, One more to reach the best';
} elseif ($randomScore === 4) {
echo '4 Points, You won!';
}