how to make a string a random splice of letters and numbers code example
Example: javascript generate random string
// Generate a random alphanumerical string of length 11 ( change substring parameter for other length)
Math.random().toString(36).substring(2);