I have three arrays. The first array contains strings, same as the second, however the third one contains NSNumber\'s. Anyways, back on topic... how can I creat
NSArray *firstArray, *secondArray, *thirdArray;
NSMutableString *csv = [NSMutableString stringWithString:@"Name,Date,Miles"];
NSUInteger count = [firstArray count];
// provided all arrays are of the same length
for (NSUInteger i=0; i