PHP Arrays
What will be the output of the following PHP code ?
$a1 = array("a" => "red", "b" => "green", "c" => "blue", "d" => "yellow");
$result = array_flip($a1);
print_r($result);

Array ( [red] => red [green] => green [blue] => blue [yellow] => yellow )
Array ( [red] => a [green] => b [blue] => c [yellow] => d )
Array ( [a] => red [b] => green [c] => blue [d] => yellow )
Array ( [a] => a [b] => b [c] => c [d] => d )

ANSWER DOWNLOAD EXAMIANS APP