is just a random number attached to every node in the tree, search
is meaningless---any min-max value over the tree is just a min-max value
of random numbers, and hence worthless.
Not worthless, it is well known that in many games minimaxing random
evaluations is stronger than randomly playing moves. Adding noise to
your evaluation function can improve performance because it will favor
lines with more possibilities to achieve an equal value. (i.e., it is
better to have 3 different options to win than only 1, unless of course
when you're absolutely sure).