public static void Main()
Console.WriteLine(lengthCount(""));
Console.WriteLine("Password Strength");
static string lengthCount(string password)
Console.WriteLine("Your password is " + password.Length + " characters long.");
if (password.Length <= 4)
return ("Might be too short...");
else if (password.Length >= 12)
return ("Might be too long...");
else if (password.Length > 4 && password.Length < 11)
return ("You're good to go!");