--- id: 5ddb965c65d27e1512d44daf title: Part 24 challengeType: 0 --- ## Description
Inspect the Female radio button again and notice that it has a `checked` attribute if it's checked: `` Check to see if the Female radio button is checked or not by chaining on the `.checked` attribute to `document.getElementById('female')`.
## Instructions
## Tests
```yml tests: - text: See description above for instructions. testString: assert(/const\s*maxCalories\s*=\s*document\.getElementById\([\'\"\`]female[\'\"\`]\)\.checked/.test(code)); ```
## Challenge Seed
```html ```
### Before Test
```html

Calorie Counter

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