--- id: 5ddb965c65d27e1512d44db6 title: Part 31 challengeType: 0 dashedName: part-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