What value is in str after this line in executed? NSString str = "test" + " " + "more";
NSString str = "test" + " " + "more";
test
test more
nil
This code contains an error