Skip to content

Commit

Permalink
ADD. logging
Browse files Browse the repository at this point in the history
  • Loading branch information
rhirano0715 committed Mar 18, 2023
1 parent 85ccecd commit 0c64649
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,10 @@
const particle = particleList[Math.floor(Math.random() * particleList.length)];
const verb = verbList[Math.floor(Math.random() * verbList.length)];

console.log(noun);
console.log(particle);
console.log(verb);

textContainer.innerText = noun.word + " " + particle.word + " " + verb.word;
}, 5000);
</script>
Expand Down

0 comments on commit 0c64649

Please sign in to comment.