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

appleorange
orangeorange
orangebanana
appleapple

ANSWER DOWNLOAD EXAMIANS APP