why isnt my code running?
public class Family{ String familyTitle; String Name; int age; String eyeColor; public static void main(String[] args) { Family father = new Family(); father.familyTitle="father"; father.name = "Jeff"; father.age =55; father.eyeColor = "Brown"; Family mother = new Family(); mother.familyTitle = "mother"; mother.name="karen"; mother.age=50; mother.eyeColor ="Hazel"; Family brother = new Family(); brother.familyTitle="brother"; brother.name="kevin"; brother.age="25"; brother.eyeColor ="Green"; Family sister = new Sister(); sister.familyTitle="sister"; sister.name="rose"; sister.age = "23"; sister.eyeColor="Hazel"; System.out.println("what are the names of your family members?" +name); } }