ItemDb class
    public function getRandomItem() {
        $query = "SELECT * FROM `items` ORDER BY RAND() LIMIT 2";
        return $this->query($query);
    }
Index.php
    $item = new Item();
    $result = $item->getRandomItem();
    while ($row = $result->fetch_assoc()) {
       foreach ($row as $key => $value) {
          //I want to put them in a array but the two items need to be separated 
       }
    }
I get two different items out of the database how can I split them and put them in one array separated like:
$array[$key][$value]
Sorry for my English its my second language and I hope you guys understand me.
 
     
    