Whenever I try to run this nothing happens. Does anyone know what's wrong?
package hobbits;
public class Hobbits {
String name;
public static void main(String[] args) {
Hobbits []h = new Hobbits[3];
int z = 0;
int x = 0;
while (z < 4){
h[z] = new Hobbits();
if (z == 0){
h[z].name = "bilbo";
}
if (z == 1){
h[z].name = "frodo";
}
if (z == 2){
h[z].name = "sam";
}
if (z == 3){
h[z].name = "pippin";
}
z += 1;
}
while (x < 4){
System.out.print(h[x].name + " is a ");
System.out.println("good Hobbit name.");
x += 1;
}
}
}