I'm trying to use Scanner method to let me input a date of birth in this format - mm/dd/yy and the output that I'd like to get would be something like this.
Input - 02/06/12
Output - February 6, 2012
I'm also trying to limit the value for day(dd) and make sure it doesn't go past 32, and the value for year(yy) to not exceed 2022. I assume I save the input as a String, however I'm not sure how to separate them and have a condition where I can assign certain String values to each month.