--- id: 5ddb965c65d27e1512d44dd2 title: Part 59 challengeType: 0 isHidden: true --- ## Description
The `calorieInput` element should only accept numbers that are 0 or above. Set the `min` attribute of `calorieInput` to `0`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert( code.replace(/\s/g, '').match(/calorieInput\.setAttribute\([\'\"\`]min[\'\"\`]\,[\'\"\`]0[\'\"\`]\)/) ); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

Sex
Breakfast
Lunch
Dinner
```
### After Test
```html ```
## Solution
```html ```