I have 2 arrays and want to copy keys from first array to second array and keep values on second array:
Arrays:
Array ( [8] => yellow [9] => violet )
Array ( [0] => blue [1] => orange )
Desired output:
Array ( [8] => yellow [9] => violet )
Array ( [8] => blue [9] => orange )