Briefing Zend Knowledge

What will be the result of the following operation?

What will be the result of the following operation? $a = array_merge([1,2,3] + [4=>1,5,6]);
echo $a[2];

A.
3

B.
Parse error

C.
4

D.
false

E.
2