--- id: 5d822fd413a79914d39e98f8 title: Part 48 challengeType: 0 dashedName: part-48 --- # --description-- Nest two new `div` elements within `bb2`, give them the classes of `bb2a` and `bb2b`, in that order. These will be two sections for this building. # --hints-- test-text ```js const bb2 = $('.bb2').children('div'); assert( bb2.length === 2 && bb2[0] === $('.bb2a')[0] && bb2[1] === $('.bb2b')[0] ); ``` # --seed-- ## --seed-contents-- ```html freeCodeCamp Skyline Project
``` # --solutions-- ```html freeCodeCamp Skyline Project
```