Modify Array Data With Indexes 1

You should be using correct index to modify the value in myArray.
not getting the above line

Your code so far

// Example
var ourArray = [1,2,3];
ourArray[1] = 3; // ourArray now equals [1,3,3].

// Setup
var myArray = [1,2,3];

// Only change code below this line.
var myArray = [3,2,3];
ourArray[0] = 3;

Your browser information:

Your Browser User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.186 Safari/537.36.

Link to the challenge:
https://www.freecodecamp.org/challenges/modify-array-data-with-indexes

You have modified the original “my Array” :stuck_out_tongue:
Just reload the page, write again the same instruction and everything will be fine :slight_smile: