Stuck on this mini question any help would be appreciated thanks a bunch
Write code that uses the input string stream inSS to read input data from string userInput, and updates variables userMonth, userDate, and userYear. Sample output if userinput is "Jan 12 1992": Month: Jan Date: 12 Year: 1992
import java.util.Scanner;
public class StringInputStream {
public static void main (String [] args) {
Scanner inSS = null;
String userInput = "Jan 12 1992";
inSS = new Scanner(userInput);`
String userMonth = "";
int userDate = 0;
int userYear = 0;
/* Your solution goes here */
System.out.println("Month: " + userMonth);
System.out.println("Date: " + userDate);
System.out.println("Year: " + userYear);
return;
}
}