--- id: 587d7fae367417b2b2512be6 title: Render Images from Data Sources challengeType: 6 videoUrl: '' localeTitle: Renderizar imágenes desde fuentes de datos --- ## Description
Los últimos desafíos mostraron que cada objeto en la matriz JSON contiene una clave imageLink con un valor que es la URL de la imagen de un gato. Cuando recorre estos objetos, puede usar esta propiedad imageLink para mostrar esta imagen en un elemento img . Aquí está el código que hace esto: html += "<img src = '" + val.imageLink + "' " + "alt='" + val.altText + "'>";
## Instructions
Agregue código para usar las propiedades imageLink y altText en una etiqueta img .
## Tests
```yml tests: - text: Debe usar la propiedad imageLink para mostrar las imágenes. testString: 'assert(code.match(/val\.imageLink/g), "You should use the imageLink property to display the images.");' ```
## Challenge Seed
```html

Cat Photo Finder

The message will go here

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