[flash 8]combining multiple arrays question

If you have two arrays, for example:


var arr1:Array = new Array("a"," b"," c");
var arr2:Array = new Array(4, 5, 6);

is it possible to combine them into a new multidimensional array that would read

[a,6],[b,5],[c,6]