Files

696 B

id, title, challengeType, dashedName
id title challengeType dashedName
665732e62eb8b30c249b5c2c Step 25 1 step-25

--description--

Now you are ready to move onto the next set of array lessons.

Remove all of your code from the previous step.

--hints--

You should remove all references to your cities variable.

assert.notMatch(__helpers.removeJSComments(code), /cities/);

--seed--

--seed-contents--

let character = 'Hello';
let count = 8;
let rows = ["Naomi", "Quincy", "CamperChan"];
--fcc-editable-region--
let cities = ["London", "New York", "Mumbai"];
console.log(cities);
cities[cities.length - 1] = "Mexico City";
console.log(cities);
--fcc-editable-region--
console.log(rows);