Is it possible to concatenate strings, as follows? And if not, what is the alternative of doing so?
while ($personCount < 10) {
    $result += $personCount . "person ";
}
echo $result;
It should appear like 1 person 2 person 3 person, etc.
You can’t use the + sign in concatenation, so what is the alternative?
 
     
     
     
     
     
     
    