Guess the Cell game in JavaScript

Let's now implement the guess the cell game. A table of 10 by 10 will be given in this game. The computer randomly memorizes 10 cells from this table. The player needs to click on the cells until he finds all the cells memorized by the computer.

Implement the described game.

Modify the previous task by adding a countdown timer. If the player can't guess the numbers in the allotted time, he lost.

enru