---
id: 64496e9c6d7a2e189948e441
title: Step 27
challengeType: 0
dashedName: step-27
---
# --description--
Now you can start using your spreadsheet functions. Begin by declaring an `update` arrow function. It should take an `event` parameter.
# --hints--
You should declare an `update` variable.
```js
assert.match(code, /(?:let|const|var)\s+update/);
```
You should use `const` to declare your `update` variable.
```js
assert.match(code, /const\s+update/);
```
Your `update` variable should be a function.
```js
assert.isFunction(update);
```
Your `update` function should take an `event` parameter.
```js
assert.match(code, /const\s+update\s*=\s*(\(\s*event\s*\)|event)\s*=>/);
```
Your `update` function should be empty.
```js
assert.match(code, /const\s+update\s*=\s*(\(\s*event\s*\)|event)\s*=>\s*\{\s*\}/);
```
# --seed--
## --seed-contents--
```html