Multiple array in a loop (php)

Here I have a loop with ‘i’ as value and I need to create an array of different name for each iteration
how can I do this in php

 $i=0;
while($row3 = mysqli_fetch_assoc($result3))
    {
       
       $edt $i[]=$row3['value'];
        $i++;
    }