var oldArray = [1,2,3,4,5];
//only change code below this line
var newArray = oldArray.map(function(val) {
return val + 3;
});
console.log(addThree);
console.log(oldArray);
@annajuare: please do not post spoilers without making an effort to mask them. You can use spoiler tags like @PortableStick did in one of your other posts.
Please also make the effort to properly format your code, as you have been asked to do several times before.
If you need help doing either of these things, I will happily explain them in more detail.