Files
trinkets/wally/app.js

12 lines
189 B
JavaScript
Raw Permalink Normal View History

const words = [
'red',
'car',
'bed'
];
function getRandomWord() {
console.log('function triggered');
return words[(Math.random() * (3 - 1) + 1)];
}
console.log( getRandomWord() );