Congratulations on starting this new phase together! Wishing you many decades of love, happiness, and growth, as you walk this new path together.
PS:
<?php
function BonusLevel($rashdansara) {
$never = str_replace(['!', '+', '-', '#', '>', '%'], ' ', $rashdansara);
$gonna = str_replace(['z', 'j', 'm', 'p'], 's', $never);
$give = str_replace(['q', '6', '9', '~'], 'e', $gonna);
$you = str_replace(['t', '*'], 'u', $give);
$up = str_replace(['x'], 'vin', $you);
return substr($up,15,33);
}
$rashdansara = "zandyb6ach9j23@mo#wh6n>ar~%yo*+gtym-haxg!kidp?qjz:\?kee93zp";
$nevergonnaletyoudown = BonusLevel($rashdansara);
echo ucfirst($nevergonnaletyoudown);
?>
(Non-programmers: Load this code in https://www.w3schools.com/php/phptryit.asp?filename=tryphp_echo1)