10, 3=>25, 1=>50, 2=>75); // Adding a value to the numbers array at index 0 $numbers[0] = 100; // Getting all the values from numbers array $result = array_values($numbers); print_r($result); ?>