I need a method that generates an alphanumeric string that starts with a random non numeric character (a,b,c...z).
This is what I've done till now:
const makeRandomString = (len) => {
return [...Array(len)].map(() => Math.random().toString(36)[2]).join("");
};
How can I add in an elegant way the random non numeric character in front of the alphanumeric string?