---
id: 62a3c8bf3980c14c438d2aed
title: Step 32
challengeType: 0
dashedName: step-32
---
# --description--
For now, make your `goStore` function output the message `"Going to store."` to the console.
# --hints--
Du solltest eine `console.log("Going to store.");` Zeile in deinem Code haben.
```js
assert.match(code, /console\.log\(\s*('|")Going to store\.\1\s*\)\s*;?/);
```
Deine `console.log("Going to store.");`-Zeile sollte in deiner `goStore`-Funktion stehen.
```js
assert.match(goStore.toString(), /console\.log\(\s*('|")Going to store\.\1\s*\)\s*;?/);
```
# --seed--
## --seed-contents--
```html
RPG - Dragon Repeller
XP: 0Health: 100Gold: 50
Monster Name: Health:
Welcome to Dragon Repeller. You must defeat the dragon that is preventing people from leaving the town. You are in the town square. Where do you want to go? Use the buttons above.