STEP 8: Let's use both of the words the user has entered in a sentence.

  • Combine the strings and variables in the .say() like this: "During " + _____ + " I like to " + _____
  • Use plus signs + to insert season into the first blank and verb into the second blank.
  • Remember, you need to include spaces in your strings. Otherwise, everything will be smushed together like this: "During" + season = "Duringfall"

# THIS ACTIVITY IS IN PREVIEW ONLY MODE