Can each instance of a BP's pick different integers?

Hello,

kind of an amateur question, I have a BP in which a ‘random integer in range’ node picks integers between 1-5. As ‘event begin play’ is fired. Let’s say there multiple instances of this BP on the level. How can I make them not to pick the same number? For ex. Cannot be (1,1,5,4,3) but it can be (1,4,2,3,5). I hope ı could explain the question well, any suggestions would be highly apperaciated.

Thank you.

P.S. (Every integer result picks an item(BP) from an array of BP class.)

Randomize until you get unique number, but there easier and more afficent way if you want to randomize order, you can shuffle the array containing the numbers or any type of variable :slight_smile:

Thank you for your reply . I guess I will go with randomizing until getting an unique integer.