function generateRandomPassword(length = 10) { const prefix = "RF-"; const chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789!@#$%^&*()"; let password = ""; for (let i = 0; i < length; i++) { const randomIndex = Math.floor(Math.random() * chars.length); password += chars.charAt(randomIndex); } return prefix + password; } m.reply(generateRandomPassword())