--- id: 5ddb965c65d27e1512d44dd2 title: Step 59 challengeType: 0 dashedName: step-59 --- # --description-- The `calorieInput` element should only accept numbers that are 0 or above. Set the `min` attribute of `calorieInput` to `0`. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match( /calorieInput\.setAttribute\([\'\"\`]min[\'\"\`]\,[\'\"\`]0[\'\"\`]\)/ ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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