Uncaught TypeError: this._somatorio is not a function

Bom dia a todos, estou estudando e fui fazer um programa e está dando o seguinte erro

Uncaught TypeError: this._somatorio is not a function

Aula05.js:16 Uncaught TypeError: this._somatorio is not a function
    at Function.chamaSomatorio (Aula05.js:16)
    at index.html:11

Uncaught TypeError: this._somatorio is not a function. Como corrigir?

index.html

<!DOCTYPE html>
<html>
    <head>
        <meta charset="UTF-8">
    </head>
    <body>        
        <script src="Aula05.js"></script>
        <script>
    <h1>Teste Somatório</h1>
            let arrayNumeros = [1,2,3,4,5];
            console.log(Aula05.chamaSomatorio(arrayNumeros));
        </script>
    </body>
</html>

Aula5.js

class Aula05{

    constructor(){
    }

    _somatorio(arrayNumeros) {
        var resultado = 0;
        arrayNumeros.forEach(elemento => {
            resultado += elemento;
        });
        return resultado;
    }

    static chamaSomatorio(arrayNumeros){
        return this._somatorio([1,2,3,4]);
    }
}

Alguem poderia me ajudar?