Referring to an array from within an array

How do i refer to an array name inside an array?
This is what i have:
array1 = [“test1”, “test2”, array2];

array2 = [“bla”,“bla”,“succes”];

Now i need something like stuff=array1[3]; (this makes an array called stuff which is a copy of array2, hopefully) and then myvar=stuff[3] (which is “succes”)… get it? no this doesnt work and i dont know why :frowning: could someone help me?

Arrays start from 0

so test1 is [0], test2 is [1] and array2 is [2]

But i’m not even sure what u’re doing’ll work anyways…but have a go. unless someone knows for sure. :slight_smile:

also make sure you define array2 before you put it in array1

Yesss, its fixed now. I had to switch the arrays, (define array2 first).
Thanx!

how could i have been so stupid aaargh…

What do u mean by define?