This question is different from Take random letters out from a string because I am not trying to remove anything from the string.
I\'m trying to pick a rand
While those above are nice. I like shorter code.
const randomLetter = ('abcdefghijklmnopqrstuvwxyz').split('')[(Math.floor(Math.random() * 26 ))];