Consider the following arrays:
Array 1 with contents:
index1    value2
a         5
b         6
c         2
And Array 2 with contents:
index2   value2
a         4
b         2
i need an Array 3 which should be the sum of the above 2 arrays. Something like:
index     value
a           9
b           8
c           2
 
     
    