--- id: 5ddb965c65d27e1512d44db6 title: Step 31 challengeType: 0 dashedName: step-31 --- # --description-- We can now use the `difference` variable that we created above. Insert the `difference` variable inside the parentheses of `.createTextNode()` If you want to see what the text currently looks like, try `console.log(resultText)`. # --hints-- See description above for instructions. ```js assert( /const\s*resultText\s*=\s*document\.createTextNode\(\s*difference\s*?\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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