twebb3633 twebb3633 21-04-2020 Computers and Technology contestada What HTML output will be generated by the following PHP code?$age = 55;$retirementAge = 65;$yearsToRetire = $retirementAge - $age;if ($yearsToRetire >= 10)print("You have a long way to go yet..");elseprint(" You have $yearsToRetire years to retire..");print("It will be here before you know it!");