Comment créer un tableau en 2 dimensions en rubis

array = [
  [1, 2, 3, 4],
  [5, 1, 9, 3],
  [6, 5, 1, 2]
]
Splendid Sloth