Challenge 1

Here is my code,

[code] NSMutableArray *foodList = [NSArray arrayWithObjects:@“Orange”, @“Grapes”, @“eggs”, nil];

    NSLog(@"My food list is %@", foodList);[/code]

and here is my output

My food list is (
Orange,
Grapes,
eggs
)

Why I have brackets…? Please help :confused: