diff --git a/04_Day/04_day_starter/04_day_starter/index.html b/04_Day/04_day_starter/04_day_starter/index.html
deleted file mode 100644
index 30d37fcf..00000000
--- a/04_Day/04_day_starter/04_day_starter/index.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-
-
- 30DaysOfJavaScript
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/04_Day/04_day_starter/04_day_starter/scripts/main.js b/04_Day/04_day_starter/04_day_starter/scripts/main.js
deleted file mode 100644
index 77629084..00000000
--- a/04_Day/04_day_starter/04_day_starter/scripts/main.js
+++ /dev/null
@@ -1 +0,0 @@
-// this is your main.js script
\ No newline at end of file
diff --git a/04_Day/04_day_starter/index.html b/04_Day/04_day_starter/index.html
index 39366314..30d37fcf 100644
--- a/04_Day/04_day_starter/index.html
+++ b/04_Day/04_day_starter/index.html
@@ -2,7 +2,7 @@
- 30DaysOfJavaScript:04 Day
+ 30DaysOfJavaScript
diff --git a/04_Day/04_day_starter/scripts/main.js b/04_Day/04_day_starter/scripts/main.js
index 77629084..ad0c1eb7 100644
--- a/04_Day/04_day_starter/scripts/main.js
+++ b/04_Day/04_day_starter/scripts/main.js
@@ -1 +1,3 @@
-// this is your main.js script
\ No newline at end of file
+// this is your main.js script
+
+alert('Open the browser console whenever you work on JavaScript')
\ No newline at end of file
diff --git a/05_Day/05_day_starter/index.html b/05_Day/05_day_starter/index.html
index b7bf5836..8f138fbd 100644
--- a/05_Day/05_day_starter/index.html
+++ b/05_Day/05_day_starter/index.html
@@ -6,6 +6,8 @@
+
30DaysOfJavaScript:05 Day
+
Arrays
diff --git a/05_Day/05_day_starter/scripts/main.js b/05_Day/05_day_starter/scripts/main.js
index c6045c83..50cc07ea 100644
--- a/05_Day/05_day_starter/scripts/main.js
+++ b/05_Day/05_day_starter/scripts/main.js
@@ -1,2 +1,3 @@
console.log(countries)
+alert('Open the browser console whenever you work on JavaScript')
alert('Open the console and check if the countries has been loaded')
\ No newline at end of file
diff --git a/readMe.md b/readMe.md
index a55b1176..b15d8e1d 100644
--- a/readMe.md
+++ b/readMe.md
@@ -227,10 +227,15 @@ If you installed visual studio code, let us start using it.
Open the visual studio code by double-clicking the visual studio icon. When you open it, you will get this kind of interface. Try to interact with the labeled icons.
![Vscode ui](./images/vscode_ui.png)
+
![Vscode add project](./images/adding_project_to_vscode.png)
+
![Vscode open project](./images/opening_project_on_vscode.png)
+
![script file](images/scripts_on_vscode.png)
+
![running script](./images/running_script.png)
+
![coding running](./images/launched_on_new_tab.png)
## Adding JavaScript to a web page
@@ -298,6 +303,7 @@ This is how we write the internal script most of the time. Writing the JavaScrip
```
Open the browser console to see the output from the console.log()
+
![js code from vscode](./images/js_code_vscode.png)
### External script
@@ -320,7 +326,7 @@ External scripts in the head
-
```
External scripts in the body
@@ -336,7 +342,7 @@ External scripts in the body
// Here is the recommended place to put the external script
-