<?php
$colors = array('red','orange','yellow','green','blue');
echo $colors[array_rand($colors)];
?>