class Person{ protected String navn; protected int alder; public Person(int alder, String navn){ this.navn = navn; this.alder = alder; } }