--- id: 56533eb9ac21ba0edf2244b9 title: Constructing Strings with Variables challengeType: 1 videoUrl: '' localeTitle: Construindo Strings com Variáveis --- ## Description
Às vezes você precisará construir uma string, estilo Mad Libs . Usando o operador de concatenação ( + ), você pode inserir uma ou mais variáveis ​​em uma string que está construindo.
## Instructions
Definir myName para uma string igual ao seu nome e construir myStr com myName entre as seqüências de caracteres "My name is " e " and I am well!"
## Tests
```yml tests: - text: myName deve ser definido para uma string com pelo menos 3 caracteres testString: 'assert(typeof myName !== "undefined" && myName.length > 2, "myName should be set to a string at least 3 characters long");' - text: Use dois + operadores para construir myStr com myName dentro dele testString: 'assert(code.match(/[""]\s*\+\s*myName\s*\+\s*[""]/g).length > 0, "Use two + operators to build myStr with myName inside it");' ```
## Challenge Seed
```js // Example var ourName = "freeCodeCamp"; var ourStr = "Hello, our name is " + ourName + ", how are you?"; // Only change code below this line var myName; var myStr; ```
### After Test
```js console.info('after the test'); ```
## Solution
```js // solution required ```