Task
If `sheet.append_row(["2026-05-16", 1600])` adds a row at position 5 (rows 1-4 exist), and `sheet.row_values(5)` returns the values of that new row, what does
sheet.append_row(["2026-05-16", 1600])
print(sheet.row_values(5))
print? Type the exact list literal Python prints (use single quotes for strings).