--- id: 5ddb965c65d27e1512d44daf title: Step 24 challengeType: 0 dashedName: step-24 --- # --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')`. # --hints-- See description above for instructions. ```js assert( /const\s*maxCalories\s*=\s*document\.getElementById\([\'\"\`]female[\'\"\`]\)\.checked/.test( code ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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