Is there any easy way to create a duplicate of an array? I've done it by making a new array and then stepping through it and the old one simultaneously, setting the new one element by element, but that gets confusing and tiresome with multidimensional arrays. I've tried simly saying newEmpty_array=old_array but that puts them into some kind of symbiosis where changing one changes the other.

Thanks for any help.

Neal