Samil Vargas

Results 2 comments of Samil Vargas

@at0g you are wrong because `Math.random() * excuses.length - 1` could give you a negative integer, the proper way is `var excuse = excuses[Math.floor(Math.random() * excuses.length)%excuses.length];`

That's true @emre1702 , the line of code `var excuse = excuses[Math.floor(Math.random() * excuses.length)];` works perfectly fine. No change must be performed. Making my change will cause an error in...