Well you can try this:
Code:
arr1=Session("yourarray")
arr2=Session("yourarray")
With this you'll have the same array in both variables... but note that changing one of the variables would change all the variables having the same array. The other way around is not possible, i.e. you can't directly assign two arrays as the value of the same variable - for this you'll have to use two separate variables.