--- id: 5ddb965c65d27e1512d44da1 title: Part 8 challengeType: 0 dashedName: part-8 --- # --description-- Now assign the document object you just referenced to a variable named `total`. Since this variable will not change, use `const` to create it. # --hints-- See description above for instructions. ```js assert( /const\s*total\s*=\s*document\.getElementsByClassName\([\'\"\`]cal\-control[\'\"\`]\)/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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