Let's say i have 2 arrays.
@a1= qw (1, 2, 3);
@a2= qw (a, b, c);
How can i print the items from these arrays in the following manner:
1 a
2 b
3 c
Edit: it should be noted that neither the quantity of items nor the content of the arrays is known.