Dear monks,
I want 2 arrays to be parsed in parallel and create a new array where the first element of first array & first element of second array are combined and they become the first element of the new array.
i.e,
array1 = (one,two,three)
array2 = (1,2,3)
combinedarray = (one:1,two:2,three:3)
i am using perl version perl5.8.8.
Thanks in advance.