02:04 am - _innocence_lost - I really need your help guys This request might be a little "off topic" but I'm having problems with my computer, and cannot test a program that I had to write for class.I was wondering if one of you guys could be kind to me and run my program in their computer and let me know if it works, and if it does, what was the sentence you typed in and what was the sentence the program returned.I would really be grateful if you guys could help me. This is my code:import java.util.Scanner;public class RR{public static void main (String[] args) {// Declare all variables to be used and request sentence from user.int x;String [] words;String input, reverse = "";Scanner scan1 = new Scanner(System.in);System.out.println("Type a sentence");input = scan1.nextLine();Scanner scan2 = new Scanner(input);words = new String[20];// Turn the sentece into a string of only lowercase letters.input = input.toLowerCase();// Get rid of the period at the end of the sentence.input = input.replace("." , " ");// Store the words of the sentence in a String array.for (x = 0 ; x <20 ; x++) {if (scan2.hasNext()); {words[x] = scan2.next();}}// Print out the sentence in reverse order.for (x = 20 ; x >= 0; x--){if (words != null) reverse = words[x] + " " + ".";reverse = reverse.substring(0,1).toUpperCase() + reverse.substring(1);System.out.print(reverse); }} // End of method main.} // End of class RR.