All quizzes
PHPCorePredict the output

What does this script print?

<?php
$a = ['x', 'y', 'z'];
$b = ['p', 'q', 'r', 's'];
print_r($a + $b);