votes
newkirk: Use of unassigned local variable 'frnSkt'
You never instantiate your arrays so they are unassigned: int[] myArray = new int[6]; then you can assign values to your array myArray[0] = 10; if you don't know the size of your array beforehand you should be using ArrayLists. ArrayLi ...
