GameObject not appearing in insepctor

I’m new to coding and Im following a tutorial on youtube of a guy that’s making a flappybird game,
In a script I typed “public gameobject pipe;” and when I saved and went to check it on unity it did not appearalt text

you didn’t capitalize the ‘GameObject’ type, it should be:
public GameObject pipe;

This may help

GameObject pipe=new GameObject("Pipe");