If I have an array with the following:
NSArray *array = [NSArray arrayWithObjects:@"dog", "brown", "kid"];
And I loop over that
for (NSString *strings in [array reverseObjectEnumerator] { }
How do I join that those individual words in one final string?