---
id: 5f475e1c7f71a61d913836c6
title: Step 91
challengeType: 0
dashedName: step-91
---
# --description--
Add one last image under the `Desserts` heading using the url `https://cdn.freecodecamp.org/curriculum/css-cafe/pie.jpg`. Give the image an `alt` value of `pie icon`.
# --hints--
You should add a second `img` element.
```js
assert($('img').length === 2);
```
Your new `img` element should have a `src` of `https://cdn.freecodecamp.org/curriculum/css-cafe/pie.jpg`.
```js
assert($('img').last().attr('src') === 'https://cdn.freecodecamp.org/curriculum/css-cafe/pie.jpg');
```
Your new `img` element should have an `alt` of `pie icon`.
```js
assert($('img').last().attr('alt').match(/pie icon/i));
```
# --seed--
## --seed-contents--
```html