changing clock/date setting on Real Time Clock pcf8563 [solved]

PaulS:
Write some simple code, in setup():

byte hour = 5;

byte min = 10;
byte sec = 14;

hour += 3;
min +=27;
sec +=10;

rtc.setTime(hour, min, sec);




What time does the RTC get set to? Read the time in loop(), and print the values.

Tme is set to 08:37:24. in which case I kinda understand.