--- id: bad87fee1348bd9aedf08833 title: Fill in the Blank with Placeholder Text challengeType: 0 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions
استبدال النص داخل عنصر p مع الكلمات القليلة الأولى من هذا النص ipsum كيتي: Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.
## Tests
```yml tests: - text: '' testString: 'assert.isTrue((/Kitty(\s)+ipsum/gi).test($("p").text()), "Your p element should contain the first few words of the provided kitty ipsum text.");' ```
## Challenge Seed
```html

Hello World

CatPhotoApp

Hello Paragraph

```
## Solution
```js // solution required ```