Hey can some1 help me with a current project in my class, its a password cracked so the start of it is like ```java
private static String ALLOWED_CHARS = "ABCabc012!";
public static void main(String[] args) {
StringBuilder password = new StringBuilder();
Random random = new Random();
for (int i = 0; i < 5; i++) {
int index = random.nextInt(ALLOWED_CHARS.length());
password.append(ALLOWED_CHARS.charAt(index));
}
so it should create a random password in this case with 5 chars long with only "ABCabc012!" but now i need crack it and i have no clue how to start a correct nested loop for this to try every possible combination.