UNPKG

kujacic-package

Version:
9 lines (6 loc) 311 B
const getRandomMotivation = () => { const motivation = ["Najljepsi/sa si", "Imas prelijep glas", "Izgledas naspavano", "Ne dozvoli drugima da te sputavaju"]; const index = Math.floor(Math.random() * motivation.length ) return motivation[index]; } module.exports = getRandomMotivation;