diff --git a/029_lists.py b/029_lists.py
index aa444718..c7d3ae91 100644
--- a/029_lists.py
+++ b/029_lists.py
@@ -25,8 +25,8 @@
 
 # @TASK Try making your own here:
 
-your_list = ...
-print(your_list)
+my_favourite_thing_to_eat  = ["Rice", "Salmon", "Noodles", "Doughnuts"]
+print(my_favourite_thing_to_eat)
 
 # @TASK and print it out by running: