Bug Moving from Page to Page

Good evening everyone!
I am a beginner in Unity and I’m trying to go from one scene to another but I can’t figure out how to do it.

using UnityEngine;
using UnityEngine.SceneManagement;

public class StartButton : MonoBehaviour
{
void Start()
{

}

public void LoadCharacterSelection()
{
SceneManager.LoadScene(“CharacterSelection”);
}
}

The name of the original scene is StartUp and the name of the scene I want to go to is called CharacterSelection. Please help as soon as possible as my deadline is in an hour.

You haven’t actually stated what’s currently happening when the method in that script is called (if it’s being called at all).

I’ve never used Unity before, so I am unsure as to what that means, please clarify what line of code goes where, or even better edit the code for me, thank you for your help!