--- id: 5ddb965c65d27e1512d44dc0 title: Step 41 challengeType: 0 dashedName: step-41 --- # --description-- Create a text node and assign it to a variable named `recommendedText`. This is similar to how your created the `resultText` element previously. # --hints-- See description above for instructions. ```js assert( /const\s*recommendedText\s*=\s*document\.createTextNode\([\'\"\`]?\s*[\'\"\`]?\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
``` ## --after-user-code-- ```html ``` ## --seed-contents-- ```html ``` # --solutions-- ```html ```