hi ive got a public array of ints and i want to store 1 or 2 in the array but im getting the error NullPointerException what im doing is this
public int[] which;
public int gotIt;
public void Check()
{
int cont = 0;
System.out.println(intento[0]);
for(int j = 0;j <= spaces;++j)
{
if(tries[0] == words[numRandom][j])
{
which[gotIt] = j;//im getting the error here
gotIt++;
}
else
{
cont++;
}
}
if(Contador == espacios+1)
{
Errors++;
System.out.println("There was an error");
}
repaint();
}
the error is when im filling the variable called which i have no idea why is that,thank you very much