--- id: 5d822fd413a79914d39e991a title: Part 81 challengeType: 0 dashedName: part-81 --- # --description-- On to the next building! Nest two `div` elements within `fb2` and give them the classes of `fb2a` and `fb2b`, in that order. # --hints-- test-text ```js const fb2 = $('.fb2').children('div'); assert( fb2.length === 2 && fb2[0] === $('div.fb2a')[0] && fb2[1] === $('div.fb2b')[0] ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```