i am trying to merge two similar arrays with the same keys
Array
(
    [0] => 4064628
    [1] => 4064953
    [2] => 4064922
    [3] => 4064870
    [4] => 4064789
    [5] => 4064631
    [6] => 4065044
    [7] => 4064942
    [8] => 4064938
    [9] => 4064936
)
Array
(
    [0] => 165020
    [1] => 165026
    [2] => 165025
    [3] => 165023
    [4] => 165024
    [5] => 165021
    [6] => 165027
    [7] => 165043
    [8] => 165042
    [9] => 165045
)
but when i use array_merge or array_merge_recursive gives the same output:
Array
(
    [0] => 4064628
    [1] => 4064953
    [2] => 4064922
    [3] => 4064870
    [4] => 4064789
    [5] => 4064631
    [6] => 4065044
    [7] => 4064942
    [8] => 4064938
    [9] => 4064936
    [10] => 165020
    [11] => 165026
    [12] => 165025
    [13] => 165023
    [14] => 165024
    [15] => 165021
    [16] => 165027
    [17] => 165043
    [18] => 165042
    [19] => 165045
)
but i try to get something like this:
Array
(
    [0] => Array
        (
            [0] => 4064628
            [1] => 165020
        )
    [1] => Array
        (
            [0] => 4064935
            [1] => 165026
        )
    [2] => Array
        (
            [0] => 4064922
            [1] => 165025
        )
     .......
can someone help please to merge these two arrays? this seems so simple but there is something i don't get, and i don't know what