Given the following code, what will be the value of $a?
$a = array('a', 'b');
array_push($a, array(1, 2));
array('a', 'b', 1, 2)
array(1, 2, 'a', 'b')
array(array(1, 2), 'a', 'b')
None of the above
Submit