From 20ffd0ce0be57b2dc69b2a9da9d49f7f631dcda4 Mon Sep 17 00:00:00 2001
From: 123saketh <123saketh@gmail.com>
Date: Sun, 7 Apr 2024 16:45:54 +0530
Subject: [PATCH] Update 06_day_loops.md

Fixed issue  Day 6 Exercise Level 3 Error #917
---
 06_Day_Loops/06_day_loops.md | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/06_Day_Loops/06_day_loops.md b/06_Day_Loops/06_day_loops.md
index c0934956b..840009ac8 100644
--- a/06_Day_Loops/06_day_loops.md
+++ b/06_Day_Loops/06_day_loops.md
@@ -473,8 +473,7 @@ for(let i = 0; i <= 5; i++){
 1. Arrays are mutable. Create a copy of array which does not modify the original. Sort the copied array and store in a variable sortedCountries
 1. Sort the webTechs array and mernStack array
 1. Extract all the countries contain the word 'land' from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
-1. Find the country containing the hightest number of characters in the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js)
-1. Extract all the countries contain the word 'land' from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
+1. Find the country containing the highest number of characters in the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js)
 1. Extract all the countries containing only four characters from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
 1. Extract all the countries containing two or more words from the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and print it as array
 1. Reverse the [countries array](https://github.com/Asabeneh/30DaysOfJavaScript/tree/master/data/countries.js) and capitalize each country and stored it as an array