diff --git a/wally/app.js b/wally/app.js index c0b9113..d1dea74 100644 --- a/wally/app.js +++ b/wally/app.js @@ -1,12 +1,14 @@ const words = [ 'red', 'car', - 'bed' + 'bed', + 'hat', + 'cat', + 'mat', + 'pet', + 'bin', + 'run', + 'bun' ]; -function getRandomWord() { - console.log('function triggered'); - return words[(Math.random() * (3 - 1) + 1)]; -} - -console.log( getRandomWord() ); \ No newline at end of file +console.log( words[2] ); \ No newline at end of file