+1  A: 

Do this:

self.bodyText = [[[self.arrayBodyText componentsJoinedByString:@""] mutableCopy] autorelease];
Jeremy W. Sherman
I'm guessing i need to replace the @"" in yourcode with the NSString object i get out of the array? Thanks Jeremy.
Code
No, don't do that; use it as written. `-componentsJoinedByString:` concatenates the strings in the array with the supplied string as the separator. So, if the array were `{@"a", @"b", @"c"}`, and you sent it `componentsJoinedByString:@"***"`, the result would be `@"a***b***c"`.
Jeremy W. Sherman
wow thats awesome! Thanks Jeremy
Code