From a339c680f6168997d6d751a1523d85884ac8de43 Mon Sep 17 00:00:00 2001 From: sorcererm83 Date: Thu, 23 Jan 2025 18:51:58 +0000 Subject: [PATCH] nombres-dominio-hecho --- src/app.js | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/src/app.js b/src/app.js index f129d1c9e..50f609382 100644 --- a/src/app.js +++ b/src/app.js @@ -5,7 +5,14 @@ import "./style.css"; import "./assets/img/rigo-baby.jpg"; import "./assets/img/4geeks.ico"; -window.onload = function() { - //write your code here - console.log("Hello Rigo from the console!"); -}; +let pronouns = ["the", "our"]; +let adjs = ["great", "big"]; +let nouns = ["jogger", "racoon"]; + +pronouns.forEach(pronouns => { + adjs.forEach(adj => { + nouns.forEach(noun => { + console.log(pronouns + adj + noun); + }); + }); +});