--- 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: 0 Health: 100 Gold: 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.
``` ```css body { background-color: #0a0a23; } #text { background-color: #0a0a23; color: #ffffff; padding: 10px; } #game { max-width: 500px; max-height: 400px; background-color: #ffffff; color: #ffffff; margin: 30px auto 0px; padding: 10px; } #controls, #stats { border: 1px solid #0a0a23; padding: 5px; color: #0a0a23; } #monsterStats { display: none; border: 1px solid #0a0a23; padding: 5px; color: #ffffff; background-color: #c70d0d; } .stat { padding-right: 10px; } button { cursor: pointer; color: #0a0a23; background-color: #feac32; background-image: linear-gradient(#fecc4c, #ffac33); border: 3px solid #feac32; } ``` ```js let xp = 0; let health = 100; let gold = 50; let currentWeaponIndex = 0; let fighting; let monsterHealth; let inventory = ["stick"]; const button1 = document.querySelector('#button1'); const button2 = document.querySelector("#button2"); const button3 = document.querySelector("#button3"); const text = document.querySelector("#text"); const xpText = document.querySelector("#xpText"); const healthText = document.querySelector("#healthText"); const goldText = document.querySelector("#goldText"); const monsterStats = document.querySelector("#monsterStats"); const monsterName = document.querySelector("#monsterName"); const monsterHealthText = document.querySelector("#monsterHealth"); --fcc-editable-region-- function goStore() { } --fcc-editable-region-- ```