I am trying to run Javascript code inside Excel VBA...

I did add the "Microsoft Script Control 1.0" library...
When I run this code:
Dim vbsObj As New ScriptControl
vbsObj.Language = "JScript"

the execution stops in line 2 with error:
"Runtime error 2147221164 (80040154) Class not registered"

I have also run command line: Regsvr32.exe "C:\Windows\SysWOW64\msscript.ocx"
and it registers successfully but the error continues to show.
Any insights? is there other way to run Javascript? thank you.