Error Scropt Engine is null (Inline Skript)

Hello, I am completely new to Camunda .

I have the problem that Postman brings the following error message as soon as the token encounters an inline script task (Java Script):

“type”: “RestException”,
“message”: “Cannot complete task …: Can’t find scripting engine for ‘javascript’: scriptEngine is null”.

Does anyone know what the problem could be? The code of the script task is from the documentation:

var system = java.lang.System; system.out.println('This prints to the console');

Thanks for any help

If you’re using Java JDK 15 it has removed the javascript engine.
So you’ll need to use Java 11 to run JavaScript

@Niall thanks!