When a Rule line is long, you might want to declare local variables to use later in the Rule.
Local variables are declared using the let statement, as follows:
let price1 = 5;
let price2 = 6;
let total = price1 + price2
You can also use const to declare a variable that cannot be changed or reassigned to another value.