--- id: 5d822fd413a79914d39e9906 title: Part 62 challengeType: 0 dashedName: part-62 --- # --description-- The next building will have three sections. Nest three `div` elements within `bb4`. Give them the classes of `bb4a`, `bb4b` and `bb4c` in that order. # --hints-- test-text ```js const bb4 = $('.bb4').children('div'); assert( bb4.length === 3 && bb4[0] === $('.bb4a')[0] && bb4[1] === $('.bb4b')[0] && bb4[2] === $('.bb4c')[0] ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```