Are PHP keys case-sensitive? What will the output of this script be?
<?php $arr1 = ["A" => "apple", "B" => "banana"]; $arr2 = ["a" => "aardvark", "b" => "baboon"]; echo count($arr1 + $arr2);