--- id: 5ddb965c65d27e1512d44da2 title: Step 9 challengeType: 0 dashedName: step-9 --- # --description-- To make the document objects easier to handle, let's turn them into an array. Wrap the `document.getElementsByClassName('cal-control')` portion of your code in an `Array.from()` method. # --hints-- See description above for instructions. ```js assert( code .replace(/\s/g, '') .match( /Array\.from\(document\.getElementsByClassName\([\'\"\`]cal\-control[\'\"\`]\)\)/ ) ); ``` # --seed-- ## --before-user-code-- ```html

Calorie Counter

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