---
id: 5d6f98247c812010bf3327dc
title: Part 67
challengeType: 0
---
## Description
You can insert variables into a string with the concatenation (`+`) operator. Update the "You now have a new weapon." string so it says "You now have a " and then lists the name of the new weapon. Make sure to add a period at the end of the sentence.
Here is an example that creates the string "Hello, our name is freeCodeCamp.":
```js
let ourName = "freeCodeCamp";
let ourStr = "Hello, our name is " + ourName + ".";
```
## Instructions
## Tests
```yml
tests:
- text: See description above for instructions.
testString: assert(buyWeapon.toString().match(/[\'\"\`]You now have a [\'\"\`]\s*\+\s*newWeapon\;?/));
```
## Challenge Seed
```html
```
### Before Test
```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.