am i dumb or is there a reason i can't pull the `data.challenge` from this ```js const data = awai

am i dumb or is there a reason i can't pull the data.challenge from this

const data = await request.text();
console.log("Data, ", data);
console.log("Challenge ", data.challenge);

let dataValue = {
    "subscription": {
        "id": "xxxxxxxxxxxxxxxxxx",
        "status": "webhook_callback_verification_pending",
        "type": "channel.chat.message", "version": "1",
        "condition": {
            "broadcaster_user_id": "xxxxx",
            "user_id": "xxxxx"
        },
        "transport": {
            "method": "webhook",
            "callback": "https:xxxxxxxxx/callback"
        },
        "created_at": "2025-05-07T23:10:35.074087445Z",
        "cost": 0
    },
    "challenge": "xxxxxxxxxxxxxxxxx"
};
Was this page helpful?