It's returning correctly, but not passing any checks.
They envisioned you leaving the first line as it stands:
my_tuple = (0, 1, 2, "hi", 4, 5)
And then having the third line read print(my_tuple).
Therefore, the second line needs to start with
my_tuple = my_tuple[:3]
Add what you need to that second line to make it work.