$a=rand(1, 10);
$b=rand(1, 11);
$belgilar = ['+', '-', '*'];
$belgi = $belgilar[rand(0, 2)];
$masala = $a." ".$belgi." ". $b." = ";
echo $masala;
$c = ($a.($belgi).$b);
echo $c;
(the return: 4 - 3 = 4-3)::but the answer should not be so. It should give me a result of 4-3 that is 1.