Example: password generator
const Numbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']
const Names = ["Aaran", "Aaren", "Aodeba","Zaid", "Zain", "Zaine", "Zaineddine", "Zainedin", "Zak", "Zakaria", "Zakariya", "Zakary", "Zaki", "Zakir", "Zakk", "Zamaar", "Zander", "Zane", "Zarran", "Zayd", "Zayn", "Zayne", "Ze", "Zechariah", "Zeek", "Zeeshan", "Zeid", "Zein", "Zen", "Zendel", "Zenith", "Zennon", "Zeph", "Zerah", "Zhen", "Zhi", "Zhong", "Zhuo", "Zi", "Zidane", "Zijie", "Zinedine", "Zion", "Zishan", "Ziya", "Ziyaan", "Zohaib", "Zohair", "Zoubaeir", "Zubair", "Zubayr", "Zuriel"]
const Symbols = ["#", "£", "@", "%", "?", "!", "+", "$", "-", "*"]
const RandomName = Names[Math.floor(Math.random() * Names.length)];
const RandomNumber = Numbers[Math.floor(Math.random() * Numbers.length)];
const RandomNumber2 = Numbers[Math.floor(Math.random() * Numbers.length)];
const RandomSymbol = Symbols[Math.floor(Math.random() * Symbols.length)];
const RandomSymbol2 = Symbols[Math.floor(Math.random() * Symbols.length)];
const RandomSymbol3 = Symbols[Math.floor(Math.random() * Symbols.length)];
const RandomSymbol4 = Symbols[Math.floor(Math.random() * Symbols.length)];
const Password = `${RandomNumber2}${RandomSymbol}${RandomName}${RandomNumber}${RandomSymbol4}`
const Password2 = `${RandomNumber2}${RandomSymbol2}${RandomName}${RandomSymbol3}${RandomSymbol4}`
const Password3 = `${RandomNumber}${RandomNumber2}${RandomName}${RandomNumber}${RandomSymbol4}`
const Password4 = `${RandomSymbol2}${RandomSymbol3}${RandomName}${RandomNumber2}${RandomNumber}`
const Passwords = [Password, Password2, Password3, Password4]
const GeneratedPassword = Passwords[Math.floor(Math.random() * Passwords.length)];
const GeneratedPasswordToLowerCase = GeneratedPassword.toLowerCase()
/* Print The Passwords*/
console.log(GeneratedPassword)
console.log(GeneratedPasswordToLowerCase)