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

appleapple
appleorange
orangeorange
orangebanana

ANSWER DOWNLOAD EXAMIANS APP