I have two arrays.
array1 = {0=>{name=>'anju',addr=>'kottayam'},1=>{name=>'anu',addr=>'kochi'}}
and
array2 = {0=>{place=>'south',state=>'kerala'},1=>{place=>'north',state=>'andra'}}
I want to combine these two arrays such that The resulted array should be
array3 ={0=>{name=>'anju',addr=>'kottayam',place=>'south',state=>'kerala'},1=>{name=>'anu',addr=>'kochi',place=>'north',state=>'andra'}}
ie combine arrays on same key positions together.