✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Яким буде результат виконання наступного PHP-коду?
$arr = array(5 => 1, 12 => 2);
$arr[] = 56;
$arr["x"] = 42;
echo var_dump($arr);