Arrays can be compared for equality with the aptly named isEqualToArray: method, which returns YES when both arrays have the same number of elements and every pair pass an isEqual: comparison.
NSArray *germanMakes = @[@"Mercedes-Benz", @"BMW", @"Porsche",
...