--- id: 5ddb965c65d27e1512d44da2 title: Part 9 challengeType: 0 dashedName: part-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