🤖 How to generate a random number between 2 and 100 using Make?

You can generate such a number using:

:point_right: {{floor(random * 99) + 2}}


:one: Remember to use the built-in operators for + and *


:two: As an example, let’s configure a Slack module to send out this random number to a user.


:three: And here we can see the result.

4 Likes