Q. What will be the output?
Code:
$a = [1,2,3]; echo array_rand($a);
β
Correct Answer: (A)
Random key
Explanation: array_rand returns random key.