//Create a function that returns a string, of a given length const genRand = (len) => { return Math.random().toString(36).substring(2,len+2); } console.log(genRand(8)); //Expected output example: 4yg020wn