The script below is attached to the Player GameObject in the scene. What would be displayed in the Console as a result of the code below?
public class PlayerManager : MonoBehaviour
{
string playerName = "Frank";
void Start()
{
Debug.Log("Hello: " + gameObject.name + playerName);
}
}