const array = ["a", "b", "c"]; array.forEach((element) => console.log(element)); // Expected output: "a" // Expected output: "b" // Expected output: "c" Parameters callbackFn A function to execute for each element in the array. Its return value is discarded. The function is called with the following arguments: element The current element being processed in the array. index The index of the current

