Roll more than one die and check results

:information_source: Attention Topic was automatically imported from the old Question2Answer platform.
:bust_in_silhouette: Asked By badtaste988

Hi all,
so I’ve written function for rolling a six-sided die:

func roll_a_dice():
var roll = randi() % 6 + 1
return roll

If I want to roll several dices and check results on each, what would be the simplest way to do it?