umm, I sort of deleted it, the code was very messy...
It was something like this:
char[] correct = new char[26]
char[] incorrect = new char[26]
char <letter>
wordlength = word.length;
int x = 0;
while ( 0 < wordlength )
{
if ( charAt(x) == letter )
{
correct[x] = charAt(x);
x = 0;
while ( x < 26;)
{
System.out.print(correct[x]);
}
break;
}
}
I think it was something like that, it was very muddled so I decided to start over from scratch...