✨forEach: Executes a specified function for each item in the array.
🔄map: Creates a new array by applying a function to each item in the original array.
🔎filter: Creates a new array with all the elements that pass a specific condition.
➕reduce: Applies a function to reduce the array to a single value.
⚖️some: Checks if at least one item in the array satisfies a condition.