With reference to excercise 5 “Variables” the instruction says:
1.
Update the variable meal
to reflect each meal of the day before we print it.
My question is what’s the difference between writing the code:
meal = “Chicken”
or
message_string = “Chicken”
What is “message_string” used for then?