i am new to object oriented programming. why am i getting this nullpointerexception? a quick answer would help me a lot.
public static void Main(string[] args){
Avatar person;
person.Speak();
}
public class Avatar{
public Avatar(){}
public void Speak(){
Console.WriteLine("Avatar says Hello!")
}
}