-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
417e4c3
commit cce4d94
Showing
3 changed files
with
88 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
const englishWords = [ | ||
{ easy: "Pidgeon", hard: "Dentist Drill" }, | ||
{ easy: "Snake", hard: "Blender" }, | ||
{ easy: "Mouse", hard: "Earthquake" }, | ||
{ easy: "Heartbeat", hard: "Zombie" }, | ||
{ easy: "Bell", hard: "Camera" }, | ||
{ easy: "Hiccup", hard: "Panda" }, | ||
{ easy: "Bee", hard: "Footsteps" }, | ||
{ easy: "Train", hard: "Broom" }, | ||
{ easy: "Dinosaur", hard: "Saxophone" }, | ||
{ easy: "Kiss", hard: "Tornado" }, | ||
{ easy: "Monster", hard: "Scissors" }, | ||
{ easy: "Police Car", hard: "Popcorn" }, | ||
{ easy: "Drinking", hard: "Boxing" }, | ||
{ easy: "Guitar", hard: "Bus" }, | ||
{ easy: "Doorbell", hard: "Cricket" }, | ||
{ easy: "Whip", hard: "Seagull" }, | ||
{ easy: "Fart", hard: "Bubbles" }, | ||
{ easy: "Rain", hard: "Chainsaw" }, | ||
{ easy: "Clock", hard: "Helicopter" }, | ||
{ easy: "Cat", hard: "Fireworks" }, | ||
{ easy: "Dog", hard: "Thunder" }, | ||
{ easy: "Wind", hard: "Motorcycle" }, | ||
{ easy: "Bird", hard: "Keyboard" }, | ||
{ easy: "Airplane", hard: "Water" }, | ||
{ easy: "Laugh", hard: "Explosion" }, | ||
{ easy: "Cough", hard: "Siren" }, | ||
{ easy: "Sneezing", hard: "Alarm" }, | ||
{ easy: "Typewriter", hard: "Chains" }, | ||
{ easy: "Clapping", hard: "Sea" }, | ||
{ easy: "Whistle", hard: "Elephant" }, | ||
{ easy: "Drums", hard: "Coffee Maker" }, | ||
{ easy: "Goat", hard: "Microwave" }, | ||
{ easy: "Rooster", hard: "Washing Machine" }, | ||
{ easy: "Pig", hard: "Hairdryer" }, | ||
{ easy: "Mosquito", hard: "Air Conditioner" }, | ||
{ easy: "Door", hard: "Car Crash" }, | ||
{ easy: "Tarzan", hard: "Michael Jackson" }, | ||
{ easy: "Yawn", hard: "Shower" }, | ||
{ easy: "Karete", hard: "Printer" }, | ||
]; | ||
|
||
export default englishWords; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
const spanishWords = [ | ||
{ easy: "Paloma", hard: "Taladro de dentista" }, | ||
{ easy: "Serpiente", hard: "Licuadora" }, | ||
{ easy: "Ratón", hard: "Terremoto" }, | ||
{ easy: "Latido del corazón", hard: "Zombi" }, | ||
{ easy: "Campana", hard: "Cámara" }, | ||
{ easy: "Hipo", hard: "Panda" }, | ||
{ easy: "Abeja", hard: "Pasos" }, | ||
{ easy: "Tren", hard: "Escoba" }, | ||
{ easy: "Dinosaurio", hard: "Saxofón" }, | ||
{ easy: "Beso", hard: "Tornado" }, | ||
{ easy: "Monstruo", hard: "Tijeras" }, | ||
{ easy: "Auto de policía", hard: "Palomitas de maíz" }, | ||
{ easy: "Beber", hard: "Boxeo" }, | ||
{ easy: "Guitarra", hard: "Autobús" }, | ||
{ easy: "Timbre", hard: "Grillo" }, | ||
{ easy: "Látigo", hard: "Gaviota" }, | ||
{ easy: "Pedo", hard: "Burbujas" }, | ||
{ easy: "Lluvia", hard: "Motosierra" }, | ||
{ easy: "Reloj", hard: "Helicóptero" }, | ||
{ easy: "Gato", hard: "Fuegos artificiales" }, | ||
{ easy: "Perro", hard: "Trueno" }, | ||
{ easy: "Viento", hard: "Motocicleta" }, | ||
{ easy: "Pájaro", hard: "Teclado" }, | ||
{ easy: "Avión", hard: "Agua" }, | ||
{ easy: "Risa", hard: "Explosión" }, | ||
{ easy: "Tos", hard: "Sirena" }, | ||
{ easy: "Estornudo", hard: "Alarma" }, | ||
{ easy: "Máquina de escribir", hard: "Cadenas" }, | ||
{ easy: "Aplausos", hard: "Mar" }, | ||
{ easy: "Silbido", hard: "Elefante" }, | ||
{ easy: "Tambores", hard: "Cafetera" }, | ||
{ easy: "Cabra", hard: "Microondas" }, | ||
{ easy: "Gallo", hard: "Lavadora" }, | ||
{ easy: "Cerdo", hard: "Secador de pelo" }, | ||
{ easy: "Mosquito", hard: "Aire acondicionado" }, | ||
{ easy: "Puerta", hard: "Accidente de auto" }, | ||
{ easy: "Tarzán", hard: "Michael Jackson" }, | ||
{ easy: "Bostezo", hard: "Ducha" }, | ||
{ easy: "Karate", hard: "Impresora" }, | ||
]; | ||
|
||
export default spanishWords; |