hi
i was wondering if its possible to compare two arrays to see if they are the same. ive tried it like this,
array1 = [bob,ted];
array2 = [bob,ted];
if(array1 == array2){
trace("monkey")
}
but do not get monkey returned
can i compare arrays and how do i go about doing it? thanks for any help