From a90afce893a3ef4269d17f5acbfddcbcdad6776b Mon Sep 17 00:00:00 2001 From: Henry Hart Alegrado Date: Wed, 23 Aug 2023 11:37:24 +0800 Subject: [PATCH] fixed instruction level 2 exercise #8 --- 06_Day_Loops/06_day_loops.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/06_Day_Loops/06_day_loops.md b/06_Day_Loops/06_day_loops.md index 72f7557..7a017ea 100644 --- a/06_Day_Loops/06_day_loops.md +++ b/06_Day_Loops/06_day_loops.md @@ -420,7 +420,7 @@ for(let i = 0; i <= 5; i++){ ['Finland','Ireland', 'Iceland'] ``` -3. In the countries array above, check if there is a country or countries end with a substring 'ia'. If there are countries end with 'ia', print it as array. If there is no country containing the word 'ia', print 'These are countries ends without ia'. +3. In the countries array above, check if there is a country or countries that ends with a substring 'ia'. If there are countries that ends with 'ia', print it as an array. If there is no country containing the word 'ia', print 'These are countries that ends without ia'. ```sh ['Albania', 'Bolivia','Ethiopia']