script follower problem

So I tried it.
but I can’t get any further.
Here you can see what he always shows me.

so I’m not getting any further.

So it still doesn’t show me my number of followers.

I will show the authorization as ### again

<script>
    //Change these vars to customize
    var time = 10000; //how often the overlay changes in milliseconds
    var followsText = "FOLLOWERS: "; //the text shown before the follow count
    var recentFollowsText = "RECENT FOLLOWERS: "; //the text shown before the recent followers list
	var Text = "RFOLLOWERS: "; //the text shown before the recent followers list
	
    //don't edit anything below here unless you know what you are doing.

    var counter = 0;
    changeFlapper();
    function changeFlapper(){
        if(counter == 0) {
            $.get({
            type: 'GET',
			headers: {"Client-ID": "hozgh446gdilj5knsrsxxz8tahr3koz","Authorization": "Bearer #################"},
            url: 'https://api.twitch.tv/helix/users/follows?from_id=440546277',
			success: function(data) {
                $('#row1').val(Text + data).change();
                $('#row2').val("").change();
                $('#row3').val("").change();
                $('#row4').val(Text + total).change();
                return data;
            }
            });
            counter = 1;
        } else if (counter == 1){
            $.get({
            type: 'GET',
            headers: {"Client-ID": "9uavest5z7knsvpbip19fxqkywxz3ec"},
            url: 'https://api.twitch.tv/helix/users/follows?to_id=440546277',
            success: function(data) {
                $('#row1').val(recentFollowsText).change();
                $('#row2').val(data.data[0].from_name).change();
                $('#row3').val(data.data[1].from_name).change();
                $('#row4').val(data.data[2].from_name).change();
                return data;
            }
            });
			counter = 0;
        }
    }
    const interval = setInterval(changeFlapper, time);
 
</script>