Get your own website Result Size: 625 x 565
x
 
dice <- c(1, 2, 3, 4, 5, 6)
for (x in dice) {
  print(x)
}
[1] 1
[1] 2
[1] 3
[1] 4
[1] 5
[1] 6