Let's say I have a method called test.
test{
NSString *answer = [[NSString alloc] initWithString:@"VALUE 1"];
answer = [[NSString alloc] initWithString:@"VALUE 2"];
}
When answer got reinitialized, what happens to the memory of the first initialization under ARC?