I don't think it matters in this scenario, but I defined my Label object instance variables inside the start method. I had (Label totalLabel;) outside the start method, then inside the start method I defined totalLabel and called the Label constructer. It shouldn't matter, but defining the instance variables/data fields inside a method allows for more customization. I think doing it this way is cleaner and more specific for other coders to understand as well.