--- id: 5d65f2c62012114c7d7c57eb title: Part 18 challengeType: 0 dashedName: part-18 --- # --description-- Similar to the `goStore` function, create a `goCave` function that prints "Going to cave." to the console. # --hints-- See description above for instructions. ```js assert( goCave .toString() .match(/console\.log\(\s*[\"\'\`]Going to cave\.?[\"\'\`]\s*\)/) ); ``` # --seed-- ## --before-user-code-- ```html