diff --git a/Games/Computer_Bingo/README.md b/Games/Computer_Bingo/README.md
new file mode 100644
index 0000000000..2f89ca6c79
--- /dev/null
+++ b/Games/Computer_Bingo/README.md
@@ -0,0 +1,16 @@
+# ๐ Simulador Bingo
+
+Repository of a simulator of the popular Bingo game where you can compete against the PC
+
+## ๐ Detalle
+Game where 15 numbers from 1 to 100 are randomly distributed between 2 cards (player and PC), the numbers can be repeated between player and machine but not in
+oneself. As the ball is drawn, those that came out are marked and below on the screen there is also the history of the numbers drawn. The first to exhaust the
+Card numbers win. The score is saved in localStorage based on how quickly it was finished, taking into account the balls that remain in the bowl without coming out
+
+# Screenshot
+
+![alt text](image.png)
+
+# Working Video
+
+
\ No newline at end of file
diff --git a/Games/Computer_Bingo/WhatsApp Video 2024-06-07 at 18.53.41_01758a15.mp4 b/Games/Computer_Bingo/WhatsApp Video 2024-06-07 at 18.53.41_01758a15.mp4
new file mode 100644
index 0000000000..99f90d472e
Binary files /dev/null and b/Games/Computer_Bingo/WhatsApp Video 2024-06-07 at 18.53.41_01758a15.mp4 differ
diff --git a/Games/Computer_Bingo/favicon/image.png b/Games/Computer_Bingo/favicon/image.png
new file mode 100644
index 0000000000..3bfaa3daae
Binary files /dev/null and b/Games/Computer_Bingo/favicon/image.png differ
diff --git a/Games/Computer_Bingo/image.png b/Games/Computer_Bingo/image.png
new file mode 100644
index 0000000000..f10c385f06
Binary files /dev/null and b/Games/Computer_Bingo/image.png differ
diff --git a/Games/Computer_Bingo/index.html b/Games/Computer_Bingo/index.html
new file mode 100644
index 0000000000..bbb13c6190
--- /dev/null
+++ b/Games/Computer_Bingo/index.html
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+ Bingo
+
+
+
+
+
maximum score 0 points
+
+
+
+
Player
+
+
+
+
Start
+
+
+
CPU
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Games/Computer_Bingo/script.js b/Games/Computer_Bingo/script.js
new file mode 100644
index 0000000000..de894531a4
--- /dev/null
+++ b/Games/Computer_Bingo/script.js
@@ -0,0 +1,122 @@
+const userboard = document.getElementById('playerBoard')
+const cpuBoard = document.getElementById('cpuBoard')
+const totalNumbers = document.getElementById('totalNumbers')
+const numberDraw = document.getElementById('numberDraw')
+const automaticBtn = document.getElementById('automatica')
+const stopAutomatic = document.getElementById('stopAutomatica')
+const scoreSpan = document.getElementById('score')
+
+const maxScore = localStorage.getItem('maxScore') || 0
+scoreSpan.innerText = maxScore
+
+const userNumbers = fifteenRandomNumbers()
+const cpuNumbers = fifteenRandomNumbers()
+
+
+let userAcerts = 0
+let cpuAcerts = 0
+
+// Creo el array con todos los numeros del 1 al 99, ya que son las bolas que pueden salir
+const balls = []
+for (let i = 1; i < 100; i++) {
+ balls.push(i)
+}
+
+for (let i = 0; i < userNumbers.length; i++) {
+ userboard.innerHTML += `
${userNumbers[i]}
`
+}
+
+for (let i = 0; i < cpuNumbers.length; i++) {
+ cpuBoard.innerHTML += `