private void CreateIcons()
 {
     // show the appropriate number of lives on the screen
     // use a loop
     for (int i = 0; i < startingLives; i++)
     {
         LifeIcon icon = Instantiate(lifeIconPrefab, transform);
     }
 }