Unity3d 5 If I press E change the scene how?

I’m only asking for script that changes the scene if I press E, How?

ScriptReference - Input

ScriptReference - SceneManagement.SceneManager.LoadScene

Put the two together:

void Update () {
    if (Input.GetKeyDown(KeyCode.E))
        UnityEngine.SceneManagement.SceneManager.LoadScene("xx");
}

Tutorials to learn the basics of Unity