Hi, I've just started studying Java and got stuck in this exercise so can anyone help me to solve it. I can only generate letters or numbers and don't know how to make it together.
Generate 3 charater + 3 numbers:
-the first character is randomly generated from the alphabets with odd ordering in the alphabet list (A, C, E, …, Y)
-the second character is randomly generated from the alphabets with even ordering in the alphabet list (B, D, F, …, Z)
-the third character is randomly generated from alphabet list (A to Z)
-each of the three digits is random generated from 1 to 9.
Use the random method from the Maths Class.
Thank you