diff --git a/Games/Falling_Words/README.md b/Games/Falling_Words/README.md
new file mode 100644
index 0000000000..fd3e160e4b
--- /dev/null
+++ b/Games/Falling_Words/README.md
@@ -0,0 +1,48 @@
+# **Falling Words**
+
+---
+
+
+
+## **Description 📃**
+
+- Falling words is game where you have to type the word, as fast as you can !!, before it reaches the bottom of the blurred square. If it touches the bottom line you lose.
+
${word}
`; + wordDiv.classList.add('word'); + wordDiv.style.top = '-2px'; + wordDiv.style.zIndex = '1'; + wordDiv.style.left = (Math.random() * (gameWidth - 150)).toString() + 'px'; + arrWordsDiv.push(wordDiv); + gameContentClass[0].appendChild(wordDiv); +} + +// GET RANDOM WORD FROM DICTIONARY +function generateRandomWord(words) { + return words[Math.floor(Math.random() * words.length)]; +} + +// GET VALUE FROM INPUT +function getWord() { + let inputValue = inputElementID.value.toLowerCase(); + inputElementID.value = ''; + if (arrWords.includes(inputValue)) { + updateScore(); + let indexWord = arrWords.indexOf(inputValue); + let wordDivIndex = arrWordsDiv[indexWord]; + arrWords.splice(indexWord, 1); + arrWordsDiv.splice(indexWord, 1); + wordDivIndex.parentNode.removeChild(wordDivIndex); + playSound(pointSound, 0, notPointSound); + } else { + playSound(notPointSound, 0, pointSound); + } +} + +// FALLING WORD LOGIC + GAMEOVER +function updateWordPosition() { + setInterval(() => { + if (!gameOver) { + let wordText = document.getElementsByClassName('word'); + for (let i = 0; i < arrWords.length; i++) { + if (parseInt(topVal) + 15 > gameHeight) { + gameOver = true; + gameContentID.innerHTML = modalGameOver(); + playSound(gameoverSound, 8, startGameSound); + gameoverSound.style.zIndex = 1; + inputElementID.setAttribute('disabled', true); + } else { + topVal = wordText[i].style.top; + topVal.replace('px', ''); + wordText[i].style.top = (parseInt(topVal) + 1).toString() + 'px'; + } + } + } + }, 20); +} + +// UPDATE SCORE +function updateScore() { + score += 10; + scoreElementID.innerHTML = `Score ${score}
`; +} + +// HELPERS +// PLAY SOUND +function playSound(sound, time, stopSound) { + let playPromise = sound.play(); + + if (playPromise !== undefined) { + playPromise + .then(() => { + stopSound.pause(); + sound.pause(); + stopSound.currentTime = 0; + }) + .then(() => { + sound.currentTime = time; + }) + .then(() => { + sound.play(); + }); + } +} + +// SHOWS CURRENT PLAYING LEVEL +function showLevel() { + if (LEVEL === '3000') { + levelElementID.innerHTML = `Level: EASY
`; + } else if (LEVEL === '2000') { + levelElementID.innerHTML = `Level: MEDIUM
`; + } else { + levelElementID.innerHTML = `Level: HARD
`; + } +} + +// GAMEOVER MODAL +function modalGameOver() { + return ` ++ is a game where you must type the word + as fast as you can !! + falling from the top of the blurred square. +
++ If it reaches the bottom + cyan line, you + lose. +
+