We used ToString because we need to “convert” the int types to a string format to be displayed. Both the currentAmmo and totalAmmo are both int types. You can also get around using “ToString” if you combine the int with some sort of text. So if I used (“Ammo is ” + currentAmmo) it wouldn’t require me to use “ToString” since it’s a combination of text and numbers.