Ok yes thanks a lot
, it helped me understand a bit about classes. Then I looked on the code of a almost similar program we wrote in school and did it like this.
CLASS 1
public class p12NameGen
{
public static void main(String[] args)
{
p12NamnLista randomp12Namn = new p12NamnLista();
System.out.println(randomp12Namn.toString());
}
}//class end
CLASS 2
public class p12NamnLista
{
String[] p12namn ={"Coolboy_97", "Niklas_Paladin"};
int namnet = (int) (p12namn.length*Math.random());
private String namn = p12namn[namnet];
public String getNamn() {
return namn;
}
public void setNamn(String namn) {
this.namn = namn;
}
@Override
public String toString()
{
String slumpatNamn = this.namn;
return slumpatNamn;
}
}// class end
Works fine