Hi guys, Imagine i have this


$text1 = "hi";
$text2 = "hello";
$text3 = "hey";
$text4 = "Good Day";


How is it possible to display only one of those strings above but also display the ones that have not been chosen for example output would end up like


"Good Day"


we also have Hey,Hello,Hi



so it shows one random output but also displays the remaining that was not chosen randomly elsewhere on the page?

Hope that makes sense

Cheers