How can i check the properties inside an object accessed by it’s own function?

I’m trying out things to understand how it works.. not sure how would i be able to get the ID for example?

const opciones = [{
        id: 0,
        texto: "Inicio",
        descripcionTitulo: "Bienvenido al programa de carga de Viajes",
        descripcion: "Selecciona lo que quieras hacer",
        icon: <FaCheckCircle />,
        next: function next() {
                console.log(this.id)
        },
        contenido: <Inicio setToggle={setToggle} />,
        botonSiguiente: "Nuevo Viaje"
    },
    {
        id: 1,
        texto: "DescripciĆ³n",
        descripcionTitulo: "Descripcion",
        descripcion: "detalles importantes",
        icon: <FaBookOpen />,
        next: function next() {

        },
        contenido: <Descripcion setToggle={setToggle} />,
        botonSiguiente: "Siguiente"

    }
    ]

i have a function inside my object and i’m trying to log it’s ID inside it’s own function if it makes sense.. i’m not sure how do I access it?
I’m getting undefined onclick if i try to log “this.id”