--- id: 5ddb965c65d27e1512d44da7 title: Step 14 challengeType: 0 dashedName: step-14 --- # --description-- Inside the function body, insert `return meal.value`, since it is the value of the individual `cal-control` inputs that we want. If you want, console log `total` to see what results you are getting. # --hints-- See description above for instructions. ```js assert( code.replace(/\s/g, '').match(/\(function\(meal\)\{returnmeal\.value\;?\}\)/) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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