JMP has many pseudo-random number generators. Use this one:
Random Integer( 1, 100 );
You can construct a vector with the J() function. Here is a call to produce a column vector of six random variables:
J( 6, 1, Random Integer( 1, 6 ) );
I am not clear what you need when you say "from which a user indicates the number of combinations to be generated."