public class Test { public static void main(String[] args) { Kjoretoy kjoretoy = new ElektriskBil("ABC123", "Tesla", "Model 3", 80); Kjoretoy[] alleKjoretoy = new Kjoretoy[10]; alleKjoretoy[0] = kjoretoy; ElektriskBil elektriskBil = null; if (kjoretoy instanceof ElektriskBil){ elektriskBil = (ElektriskBil) kjoretoy; elektriskBil.lade(100); elektriskBil.skrivUt(); } } }