Concept Flow - Filter method
Start with array
Check each element
Apply condition function
Keep element
Build new filtered array
Return new array
The filter method checks each element in an array with a condition. If true, it keeps the element; if false, it skips it. It returns a new array with only the elements that passed.