0 / 60 seg.

What is printed from this code execution?

typedef enum {
    thing1,
    thing2,
    thing3
} Thing;
-(void) enumStuff {
    NSLog(@"%d", thing2);
}