<?php

// your code goes here
$x = 'hello';

       while ($x != 5) {
           $x++;
           echo $x . '<br>';
       }