NSString *str1 = @"Witaj wiecie!";

NSRange range;
range.location = 6;                       // <----- lub wywoaj NSRangeMake(6, 7);
range.length = 7;

NSString *str2 = [str1 substringWithRange:range];
NSLog(@"Ostatnie sowo cigu tekstowego '%@' brzmi '%@'", str1
