Code for multiply a variable with 1000

{
  "Name": "MultiplyVariable",
  "CreationDate": "2025-08-22",
  "Commands": [
    {
      "Command": "store",
      "Target": "5",
      "Value": "myVar"
    },
    {
      "Command": "executeScript",
      "Target": "return ${myVar} * 1000;",
      "Value": "result"
    },
    {
      "Command": "echo",
      "Target": "Result is: ${result}",
      "Value": ""
    }
  ]
}