diff --git a/src/interface.cpp b/src/interface.cpp
index 8099689334236af1075642cacb887df35a9fd110..3b4c10242666cc79b61bfc19685298b5d02bf742 100644
--- a/src/interface.cpp
+++ b/src/interface.cpp
@@ -200,8 +200,7 @@ void MainWindow::on_nbrStateComboBox_currentTextChanged(const QString &arg1)
 
 void MainWindow::on_randomPatternButton_clicked()
 {
-    // TODO Prendre en compte l'alphabet !
-    // int nbr = rand() % nbr de states différents;
+    int alphabetSize = simulation.getAlphabet().taille();
 
     Grid oldGrid = ui->grid_view->get_grid();
     unsigned nbrRow = oldGrid.get_rows(); // rows = nbr de lignes => axe y
@@ -212,11 +211,8 @@ void MainWindow::on_randomPatternButton_clicked()
     {
         for (unsigned x = 0; x < nbrCol; ++x)
         {
-            // TODO Remplacer 2 par le nbr d'états différents
-            // TODO comprendre pourquoi il faut inverser x et y (???)
-            unsigned state = rand() % 2;
+            unsigned state = rand() % alphabetSize;
             Coord pos = {static_cast<int>(x), static_cast<int>(y)};
-            //std::cout << "position x= "<< pos.x << " y= "<< pos.y << endl;
             newGrid.set_cell(pos, state);
         }
     }