Concatenate Arrays with concat

This makes no sense:

Your code so far

var oldArray = [1,2,3];
var newArray = [];

var concatMe = [4,5,6];

// Only change code below this line.


newArray = oldArray.concat(otherArray[oldArray,NewArray]);```
**Your browser information:**

Your Browser User Agent is: ```Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/61.0.3163.100 Safari/537.36```.

**Link to the challenge:**
https://www.freecodecamp.org/challenges/concatenate-arrays-with-concat

This line you have added doesn’t make sense. The format for concatting one array to another is:
arrayYouWantInFront.concat(arrayYouWantInBack) and can set that as a new variable if you want