foreach modifier le tableau javascript

arr.forEach(function(part, index) {
  this[index] = "hello world";
}, arr); // use arr as this
DGOAT