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

appleapple
orangebanana
appleorange
orangeorange

ANSWER DOWNLOAD EXAMIANS APP