How do I link the integer with the text to make a score.?,How do I link my integer to my text?????? My text is called score (no capitals)

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class NWQ : MonoBehaviour
{
public Rigidbody2D myrigidbody;
public float flapstrength;
public float movespeed;
public int playerscore;
public text scoreText;
// Start is called before the first frame update
void Start()
{
playerscore = 0;
}

// Update is called once per frame
void Update()

{
    
    
    if (Input.GetKeyDown(KeyCode.Space) == true)

    {
        
        myrigidbody.velocity = Vector2.up * flapstrength;
        playerscore = playerscore + 1;

    }
     if (Input.GetKeyDown(KeyCode.D) == true)
    {
        myrigidbody.velocity = new Vector3(5,0,0);
    }
    
    if (Input.GetKeyDown(KeyCode.A) == true)
    {
        myrigidbody.velocity = new Vector3(-5,0,0);
    }
}

}

,Here is my code so far:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class NWQ : MonoBehaviour
{
public Rigidbody2D myrigidbody;
public float flapstrength;
public float movespeed;
public int playerscore;
public text scoreText;
// Start is called before the first frame update
void Start()
{
playerscore = 0;
}

// Update is called once per frame
void Update()

{
    
    
    if (Input.GetKeyDown(KeyCode.Space) == true)

    {
        
        myrigidbody.velocity = Vector2.up * flapstrength;
        playerscore = playerscore + 1;

    }
     if (Input.GetKeyDown(KeyCode.D) == true)
    {
        myrigidbody.velocity = new Vector3(5,0,0);
    }
    
    if (Input.GetKeyDown(KeyCode.A) == true)
    {
        myrigidbody.velocity = new Vector3(-5,0,0);
    }
}

}

If you want to show it in a string you do this: “score” + myscore

So…

MyStuff(Text Mesh Pro stuff linking UI text to code or a variable of type string) = “Score:” + myscore

So now if you type Debug.Log(MyStuff) you’ll see the text “Score:” linked to your actual score.

Sorry I don’t understand. I want to make a score ui on the screen but I don’t know how to use your code to do that.