<?php
$testArray = array("value1", "value2", "value3", "value4");
$testRand = array_rand($testArray, 2);
echo $testArray[$testRand[0]];
?>
<?php
$testArray = array("value1", "value2", "value3", "value4");
$testRand = array_rand($testArray, 2);
echo $testArray[$testRand[0]];
?>