You need to overwrite the routes.xml file present in vendor\magento\module-contact\etc\frontend\
folder
change from
<code>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="contact" frontName="contact">
<module name="Magento_Contact" />
</route>
</router>
</config>
</code>
to:
<code>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:App/etc/routes.xsd">
<router id="standard">
<route id="YOUR_Choice" frontName="YOUR_Choice">
<module name="Magento_Contact" />
</route>
</router>
</config>
</code>