Total: 40 points Extra Credit: 10 points Name of Project: YourUsername_P1. My project name would be "mutsuday_P1". Please use this format as it helps during grading. Place all.java files in the same project. The goals of this project are to learn to write programs using methods, Arrays and ArrayLists. 1. (20 points) Create a Java Main Class file titled "TeamScore.java" (5 points) Write a public method (static method) winnerfint points 1, int points2) that takes two scores and returns a boolean. If points1 is greater than points2 the method returns true and if points1 is less than points, the method returns false. Points should not be tied but return false if that ever happens. The method returns false if none of the conditions are true. (15 points) In your main method, declare two arrays - the first array is team 1's points and the second array is opponents' points in corresponding games, i.e., the first items in the arrays are the scores for each team in the first game and so on. The arrays are the same length. Hard code the values of the arrays, that is, declare the arrays with known values. User input via keyboard or random number generation is not needed. Do NOT use ArrayLists. Using the method winner from above, calculate and print the win/loss record of teami. If all games were won, print out a message saying that team has a perfect record. Here are some examples: 1. (20 points) Create a Java Main Class file titled "TeamScore.java" (5 points) Write a public method (static method) winner(int points 1, int points2) that takes two scores and returns a boolean. If points 1 is greater than points2 the method returns true and if points1 is less than points, the method returns false. Points should not be tied but return false if that ever happens. The method returns false if none of the conditions are true