forEach call a function

  fruits.forEach(myFunction);

Foreach do something

  MyArray.forEach((Item) => {
    do_something = Item;
  });