I'm trying to addobjects to a nsmutable array in lion, xcode 4.3 using ARC. the following is causing the program to crash with SIGABRT
NSMutableArray *myArray = [NSMutableArray arrayWithCapacity:10];
[myArray insertObject:@"Hello World" AtIndex:5]
how can i add custom objects to any index in the array?
Thanks in advance for your help.