--- id: 5ddb965c65d27e1512d44db1 title: Step 26 challengeType: 0 dashedName: step-26 --- # --description-- Now that we have `total` and `maxCalories`, we need to find out the difference between them. Create a variable named `difference` and set it equal to `total - maxCalories` # --hints-- See description above for instructions. ```js assert(/const\s*difference\s*\=\s*total\s*\-\s*maxCalories?/.test(code)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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