I generate random numbers and store them in an array.
int RandomNumber = arc4random() % 12;
[NSMutablearray *Number addObject:[NSNumber numberWithInt:RandomNumber]];
Now i want to make sure the same number is not created randomly again. Can any one please tell me how to do it with sample code.