--- id: 5ddb965c65d27e1512d44da8 title: Step 15 challengeType: 0 dashedName: step-15 --- # --description-- Since eventually we'll be adding all of the meal calories in the `total` array, explicitly convert `meal.value` into a number by wrapping it in the `Number()` function. # --hints-- See description above for instructions. ```js assert(code.replace(/\s/g, '').match(/Number\(meal\.value\)\;?/)); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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