--- id: 5ddb965c65d27e1512d44da3 title: Step 10 challengeType: 0 dashedName: step-10 --- # --description-- Create a variable named `meal` and set it equal to the first index of `total` (`total[0]`). This would be the input for Breakfast on the form. # --hints-- See description above for instructions. ```js assert(/const\s*meal\s*=\s*total\[0\]/.test(code)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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