+ 1
// Good Luck
const characters = "QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890!@#$%^&*()";
let rand = "";
while (rand.length < 8) {
rand += characters[Math.floor(Math.random() * characters.length)];
}
console.log(rand);
0
https://youtu.be/cVPlU8nIJmI Do you know what is oop?