diff --git a/readMe.md b/readMe.md
index 2d60fd8..94f0f7b 100644
--- a/readMe.md
+++ b/readMe.md
@@ -160,22 +160,22 @@ Every contribution, big or small, makes a huge difference. Thank you for your su
## Introduction
-**Congratulations** on deciding to participate in the 30 Days of JavaScript programming challenge. In this challenge, you will learn everything you need to become a JavaScript programmer, and in general, the whole concept of programming. At the end of the challenge, you will receive a 30DaysOfJavaScript programming challenge completion certificate. In order to get a certificate, you have to enroll in [DevOsome](https://www.devosome.com/), an interactive and engaging online educational platform.
+**Congratulations** on deciding to participate in 30 days of JavaScript programming challenge. In this challenge, you will learn everything you need to be a JavaScript programmer, and in general, the whole concept of programming. In the end of the challenge, you will get a 30DaysOfJavaScript programming challenge completion certificate. In order to get a certificate, you have to enroll to [DevOsome](https://www.devosome.com/) which is an interactive and engaging online educational platform.
-If you need help or would like to help others, you may join the dedicated [telegram group](https://t.me/ThirtyDaysOfJavaScript).
+In case you need help or if you would like to help others you may join the dedicated [telegram group](https://t.me/ThirtyDaysOfJavaScript).
-The **30DaysOfJavaScript** challenge is a guide for both beginners and advanced JavaScript developers. Welcome to JavaScript. JavaScript is the language of the web. I enjoy using and teaching JavaScript and I hope you will too.
+**A 30DaysOfJavaScript** challenge is a guide for both beginners and advanced JavaScript developers. Welcome to JavaScript. JavaScript is the language of the web. I enjoy using and teaching JavaScript and I hope you will do so too.
-In this step-by-step JavaScript challenge, you will learn JavaScript, the most popular programming language in the history of mankind.
+In this step by step JavaScript challenge, you will learn JavaScript, the most popular programming language in the history of mankind.
JavaScript is used **_to add interactivity to websites, to develop mobile apps, desktop applications, games_** and nowadays JavaScript can be used for **server-side programming**, **_machine learning_** and **_AI_**.
**_JavaScript (JS)_** has increased in popularity in recent years and has been the leading
programming language for last ten years and is the most used programming language on
GitHub.
-This challenge is easy to read, written in conversational English, engaging, motivating and at the same time, it is very demanding. You need to allocate much time to finish this challenge. If you are a visual learner, you may find the video lessons on the Washera YouTube channel. Subscribe to the channel, comment, and ask questions on the YouTube videos and be proactive — the author will eventually notice you.
+This challenge is easy to read, written in conversational English, engaging, motivating and at the same time, it is very demanding. You need to allocate much time to finish this challenge. If you are a visual learner, you may get the video lesson on Washera YouTube channel. Subscribe the channel, comment and ask questions on YouTube vides and be proactive, the author will eventually notice you.
-The author loves to hear your opinion about the challenge. Share your thoughts with the author about the 30DaysOfJavaScript challenge. You can leave your testimonial on this [link](https://www.asabeneh.com/testimonials)
+The author likes to hear your opinion about the challenge, share the author by expressing your thoughts about the 30DaysOfJavaScript challenge. You can leave your testimonial on this [link](https://www.asabeneh.com/testimonials)
## Requirements
@@ -189,7 +189,7 @@ No prior knowledge of programming is required to follow this challenge. You need
## Setup
-I believe you have the motivation and a strong desire to be a developer, along with a computer and internet access. If you have those, then you have everything to get started.
+I believe you have the motivation and a strong desire to be a developer, a computer and Internet. If you have those, then you have everything to get started.
### Install Node.js
@@ -197,7 +197,7 @@ You may not need Node.js right now but you may need it for later. Install [node.

-After downloading, double-click to install.
+After downloading double click and install

@@ -265,7 +265,7 @@ console.log('Hello, World!')
##### Console.log with Multiple Arguments
-The **`console.log()`** function can take multiple parameters separated by commas. The syntax looks as follows: **`console.log(param1, param2, param3)`**
+The **`console.log()`** function can take multiple parameters separated by commas. The syntax looks like as follows:**`console.log(param1, param2, param3)`**

@@ -303,7 +303,7 @@ This is a multiline comment
##### Syntax
-Programming languages are similar to human languages. English and many other languages use words, phrases, sentences, compound sentences, and more to convey a meaningful message. The English meaning of syntax is _the arrangement of words and phrases to create well-formed sentences in a language_. The technical definition of syntax is the structure of statements in a computer language. Programming languages have syntax. JavaScript is a programming language and like other programming languages it has its own syntax. If we do not write a syntax that JavaScript understands, it will raise different types of errors. We will explore different kinds of JavaScript errors later. For now, let us see syntax errors.
+Programming languages are similar to human languages. English or many other language uses words, phrases, sentences, compound sentences and other more to convey a meaningful message. The English meaning of syntax is _the arrangement of words and phrases to create well-formed sentences in a language_. The technical definition of syntax is the structure of statements in a computer language. Programming languages have syntax. JavaScript is a programming language and like other programming languages it has its own syntax. If we do not write a syntax that JavaScript understands, it will raise different types of errors. We will explore different kinds of JavaScript errors later. For now, let us see syntax errors.

@@ -327,7 +327,7 @@ console.log(`Hello, World!`)
Now, let us practice more writing JavaScript codes using _`console.log()`_ on Google Chrome console for number data types.
In addition to the text, we can also do mathematical calculations using JavaScript. Let us do the following simple calculations.
-It is possible to write JavaScript code directly on the Google Chrome console without the **_`console.log()`_** function. However, it is included in this introduction because most of this challenge takes place in a text editor where using the function is mandatory. You can play around directly with instructions on the console.
+It is possible to write JavaScript code on Google Chrome console can directly without the **_`console.log()`_** function. However, it is included in this introduction because most of this challenge would be taking place in a text editor where the usage of the function would be mandatory. You can play around directly with instructions on the console.

@@ -346,7 +346,7 @@ We can write our codes on the browser console, but it won't be for bigger projec
#### Installing Visual Studio Code
-Visual Studio Code is a very popular open-source text editor. I would recommend [downloading Visual Studio Code](https://code.visualstudio.com/), but if you prefer another editor, feel free to continue with what you have.
+Visual Studio Code is a very popular open-source text editor. I would recommend to [download Visual Studio Code](https://code.visualstudio.com/), but if you are in favor of other editors, feel free to follow with what you have.

@@ -500,7 +500,7 @@ console.log('Hello, World!')