1- Create a java program that accepts five integers as arguments via the command line.The program should then check if the five integers were given in ascending or descending order. If the integers are in either ascending or descending order the program should output the range of the integers (i.e. the difference between the lowest and highest values) and their mean value. If the integers are in neither ascending or descending order, the program should output a message to that effect and not output the range and mean value. For this exercise, two or more numbers that are equal are in both ascending and descending order.