In the course we declare a variable for audio
AudioSource myAudioSource;
then, in the start() method we initialize it
myAudioSource = GetComponent();
Why do we initialize in start() method? Why can’t we declare and initialize at the same time like this
AudioSource myAudioSource = GetComponent();