Copy as Markdown View as Markdown (opens in new tab) View on GitHub (opens in new tab) Open in... ChatGPT (opens in new tab) Claude (opens in new tab) Perplexity (opens in new tab) 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 }