Basically my java program is supposed to calculate the length of each string in anArray. That isn't too much of problem HOWEVER I can't seem to figure out how to collect strings of the same length and have them as a tally. ie. if there is an array of strings "The dog isn't second first" it will print out length of each string "3 3 5 6 5" but also collect the same lengths "3 3", "5 5" and have them as an output: |Value: 3 Tally:2 Value:5 Tally:2| (note: it doesn't have to be in this form). Anyone have any ideas?