I m so confusing here with this problem, please help me to solve this.
I have 2 array data,
$one = array ("sinta","jojo","wawan","silvie");
$two = array ("eat","sleep","breakfast","sport");
I want to create a random output array from this 2 array, and i want this only pick 2 random array from each array data, so maybe the result would be like this :
$three = array ("sinta","silvie","breakfast","eat");
or
$three = array("jojo","silvie","eat","sleep");
and etc..