how would you convert this array:
Array
(
    [0] => Array
        (
            [Contact] => Array
                (
                    [number] => 0425 234 634
                )
        )
    [1] => Array
        (
            [Contact] => Array
                (
                    [number] => 2939 492 235
                )
        )
)
into this array
Array
(
    [0] => 0425 234 634
    [1] => 2939 492 235
)
?