randomSeed( int )
Set seed to get a reproducible pseudo-random number using Math.random.
| Parameter | Type | Description | 
|---|---|---|
| int | integer | The seed value. | 
Example
Use randomSeed to get the same random number in all the iterations.
import { randomSeed } from 'k6';
export const options = {
  vus: 10,
  duration: '5s',
};
export default function () {
  randomSeed(123456789);
  const rnd = Math.random();
  console.log(rnd);
}

