---
id: 6464905afec9efcf7328ce58
title: Step 90
challengeType: 0
dashedName: step-90
---
# --description--
Next, use the `.forEach()` method to loop through the `animationData` array. For the `.forEach()` method's callback function, pass in `obj` as a parameter, but leave the body of the callback function empty for now.
# --hints--
You should use the `.forEach()` method to loop through the `animationData` array.
```js
assert.match(String(showAnimation), /animationData\s*\.\s*forEach\(/);
```
You should pass in `obj` as a parameter to the `.forEach()` method's callback function.
```js
assert.match(String(showAnimation), /animationData\s*\.\s*forEach\(\s*(\(\s*obj\s*\)|obj)\s*=>\s*\{|animationData\s*\.\s*forEach\(\s*function\s*\(\s*obj\s*\)\s*\{/);
```
The body of your `.forEach()` method's callback function should be empty.
```js
assert.match(String(showAnimation), /animationData\s*\.\s*forEach\([\s\S]+\{\s*\}/);
```
# --seed--
## --seed-contents--
```html