randomInt randomInt(upperBound: Number): Number Returns a pseudo-random whole number from 0 to the specified number (exclusive). Parameters Name Description upperBound A number that sets the upper bound of the random number. Example This example returns an integer from 0 to 1000 (exclusive). Source %dw 2.0 output application/json --- { price: randomInt(1000) } Output { "price": 442.0 }