We're to find the difference between consecutive input values and return the largest change. My main issue is finding the correct operator to use (I think). Also I wanted it to work with negative values..
if(count > 0){
      change = Math.abs(temp) - Math.abs(temp2);
      UI.println(change);
      if(Math.abs(change) > Math.abs(bigChange)){
           bigChange = Math.abs(change);
      }
}
 
     
     
     
     
    