Help calculating end time based on minutes left

Yes, to set the endtime 1 hour and 30 minutes later after the current time, use BLL card “set variable to BLL expression “, using the expression
date('shorttime', Date.now() + (90*60000) )
Or
date('hh:mm', Date.now() + (90*60000) )
Which does the same format.