Close... I want to create a new array using the first two values of each sub-array with the third values in a different array.
Take these:
Array(
array(925, 5),
array(603, 6)
)
Array(
array(925, 2),
array(603, 17)
)
and make this:
Array(
array(925, 5, 2),
array(603, 6, 17)
)