hello, i attempted to create this program but it keeps coming up with errors. can someone please make the corrections for me so
public class Humans{ String name; int heightInInches; int weight; String eyeColor; String gender; int age; String race; } public void speak(){ System.out.println("Hello my name is" + name); System.out.println("i am a" + gender "who is" + age); System.out.println("my eye color is" + eyeColor + "i am" + race); System.out.println("i am"+ heightInInches + "inches"+ "weighing" + weight + "pounds"); } public void eat(){ System.out.println("eating..."); } public void sleep(){ System.out.println("sleeping..."); } public void think(){ System.out.println("thinking..."); } public class Earth(){ public static void main(String []args){ Humans tom; tom = new Humans(); tom.age = 25; tom.eyeColor = "white"; tom.heightInInches = 66; tom.name = "david"; tom.race = "haitian"; tom.weight= 160; tom.gender = "Male"; tom.speak(); } }