PHP Arrays
What will be the output of the following PHP code ?
$people = array("Peter", "Susan", "Edmund", "Lucy");
echo pos($people);

Edmund
Susan
Peter
Lucy

ANSWER DOWNLOAD EXAMIANS APP