I\'m trying to create an array of strings that can be randomized and limited to a certain x number of strings.
If the array could be randomized I could pick the firs
All C auto arrays like that will be full of garbage until you fill them. As long as it isn't getting filled with garbage later, everything is working as expected. However, Cocoa includes the NSArray class which is more common to use for arrays of objects (since it does proper memory management and works with the rest of the framework and all that).