How do you remove an object in the game via script?

Hello! So I’m trying to create a script where once the player hits an obstacle, the player will be shot up and movement will be disabled, and the ground (which is just one object) will be destroyed.

However, I cannot figure out how to remove an object from Unity, I’ve tried to find it on the forums but perhaps it’s outdated since it doesn’t work in my case.

Please give me as much constructive criticism as you like, I’m very new to Unity and C# and game development as a whole and I’d love to learn.

using UnityEngine;

public class PlayerCollision : MonoBehaviour
{
    public PlayerMovement movement;
    public Rigidbody rb;
   
    //within the curly brackets, the script will be called whenever a collision occurs
    void OnCollisionEnter(Collision collisionInfo)
        {
            if(collisionInfo.collider.tag == "Obstacle")
                {
                  rb.AddForce(0,2000,0 * Time.deltaTime);
                  movement.enabled = false;
                  //attempting to remove ground post-collision
                  Remove(Ground);

Destroy() is the reference way to remove anything in Unity. There are other variations and arguments if you check the docs.