--- id: 5d822fd413a79914d39e9911 title: Part 73 challengeType: 0 --- # --description-- Looks good! On to the foreground buildings! Turn the `fb1` building into three sections by nesting three new `div` elements within it. Give them the classes of `fb1a`, `fb1b` and `fb1c`, in that order. # --hints-- test-text ```js const fb1 = $('.fb1').children('div'); assert( fb1.length === 3 && fb1[0] === $('div.fb1a')[0] && fb1[1] === $('div.fb1b')[0] && fb1[2] === $('div.fb1c')[0] ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```