diff --git a/exercises/21.3-Filter-list/README.md b/exercises/21.3-Filter-list/README.md index c5864244..5197f5d7 100644 --- a/exercises/21.3-Filter-list/README.md +++ b/exercises/21.3-Filter-list/README.md @@ -2,11 +2,11 @@ # 📝Instructions: -Given an array names please create a function filters the list with -only the names that contain the given string. +Given an array of names, please create a function that filters the list with +only the names containing the given string. -- Create a function called `filterByName` that take two values one is -the array and second one is the filter desire. +- Create a function called `filterByName` that accepts two values one is +the array and the second one is the filter desire. - The search should NOT be Case Sensitive. @@ -20,4 +20,4 @@ the array and second one is the filter desire. array.filter(); string.includes(); string.toLowerCase(); -``` \ No newline at end of file +```