Health Dose not display

My health bar is not displaying my players health:

Here is my code

GameObject healthText = GameObject.Find(“Health Display”);
//GameObject healthPoints = GameObject.Find(“Health Text”);
healthText.GetComponent().text = "Health: " + health.ToString();

You are not getting any component because you didnt specify the type. Try this

healthText.GetComponent<Text>().text