i have two arrays i want to put together. i want to join the values of each array to become one array. i have these two arrays

$cars
$trucks

so all the values i want them to become one.

PHP CODE
<php?
array_merge($cars,$trucks);
?>