I want to use an engine to convert a string of a simple math equation to an actual equation. The code compiles but the engine isn't found. Code: ```java
// Create a new Script engine
ScriptEngineManager manager = new ScriptEngineManager();
ScriptEngine engine = manager.getEngineByName("JavaScript");
// Calculation
try {
Object result = engine.eval(equation);
System.out.println("Result: " + result);
} catch (ScriptException e) {
System.out.println("ERROR: Something went wrong with the equation");
}