# \[flash 8\]combining multiple arrays question

**URL:** https://forum.kirupa.com/t/flash-8-combining-multiple-arrays-question/305742
**Category:** flash
**Created:** [March 2, 2010, 11:41pm UTC](https://forum.kirupa.com/t/flash-8-combining-multiple-arrays-question/305742 "2010-03-02T23:41:03Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![freefallingup](https://avatars.discourse-cdn.com/v4/letter/f/3d9bf3/32.png) [@freefallingup](https://forum.kirupa.com/u/freefallingup)
#### Post date: [March 2, 2010, 11:41pm UTC](https://forum.kirupa.com/t/flash-8-combining-multiple-arrays-question/305742/1 "2010-03-02T23:41:03Z")

</div>

If you have two arrays, for example:

```auto

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]
