I'm having a hard time getting the hang of this. Say I have:
NSMutableArray *array1 which is already defined and has content.
Now I want to create another variable, NSMutableArray *array2.
When I do [array2 addObject:someObject], I want this object to be added to array1, not to array2. How can I assign array2 so that if I make any changes to it, it modifies array1 instead?