Solution: Remember Stuff

This code combines two pieces of information (favorite color and animal) into a single descriptive sentence.

Explanation:

  • Two variables store your favorite animal and color.

  • The + operator joins text and variables to form a full sentence.

  • The final message, like “My favorite animal is a blue dolphin.”, is shown in the console using console.log().

Solution: Remember Stuff

This code combines two pieces of information (favorite color and animal) into a single descriptive sentence.

Explanation:

  • Two variables store your favorite animal and color.

  • The + operator joins text and variables to form a full sentence.

  • The final message, like “My favorite animal is a blue dolphin.”, is shown in the console using console.log().