11.1.7: Fix This Tuple

The Problem

It's returning correctly, but not passing any checks.

The Solution

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.