What will be the output of the following PHP code?<br/>$a1 = array("a" => "red", "b" => "green", "c" => "blue", "d" => "yellow");<br/>$a2 = array("e" => "red", "f" => "green", "g" => "blue", "h" => "orange");<br/>$a3 = array("i" => "orange");<br/>$a4 = array_combine($a2, $a3);<br/>$result = array_diff($a4, $a2);<br/>print_r($result);
YOUR ANSWER : ?
EXAMIANS