PHP Arrays
What will be the output of the following PHP code?
$fruits = array ("apple", "orange", "banana");
echo (next($fruits));
echo (next($fruits));

orangeorange
orangebanana
appleapple
appleorange

ANSWER DOWNLOAD EXAMIANS APP