Inside of ArrayTester you should:
  - Have two arrays setup as follows:
  int [] b = {1,2,3,4,5,6,7,8,9,10};
  int [] c = {3,0,8,3,7,3,1,5,0,7,3,78,4,2,2,9,6,7,2,5,4,9,53,8,32,676,0};
  - Test every method in the ArrayInfo class and print the result of each method 
  call for both arrays.
  - ArrayTester only needs a main method.
  Inside of ArrayInfo you should create the following methods:
  - countMins (p.14 of text)
  - allDifferent (p. 27 of text)
  - minimum
  - maximum
  - sum
  - average
  - print
  NOTE: 
  You will NOT be creating objects of the ArrayInfo class, so every method can 
  be: __________________
  Be sure to include proper ‘JAVA DOC’ comments and follow all rules 
  of indentation and style.