--- id: 587d7b87367417b2b2512b3f title: Explore Differences Between the var and let Keywords challengeType: 1 videoUrl: '' localeTitle: '' --- ## Description undefined ## Instructions undefined ## Tests
```yml tests: - text: '' testString: 'getUserInput => assert(!getUserInput("index").match(/var/g),"var does not exist in code.");' - text: '' testString: 'assert(catName === "Oliver", "catName should be Oliver.");' - text: '' testString: 'assert(quote === "Oliver says Meow!", "quote should be "Oliver says Meow!"");' ```
## Challenge Seed
```js var catName; var quote; function catTalk() { "use strict"; catName = "Oliver"; quote = catName + " says Meow!"; } catTalk(); ```
## Solution
```js // solution required ```