Single Cron Expression two different time's

I need to run the bot in two different time 11 am and 1.30pm for Monday to Friday is it possible single Cron expression?

0 0 11,13 ? * MON,TUE,WED,THU,FRI *

This is the closest u’ll get i believe. Would make 2 triggers for this.

Hey,

I think you have to make the 2 Cron Expression

0 0 11 ? * MON,TUE,WED,THU,FRI *
0 30 13 ? * MON,TUE,WED,THU,FRI *

thanks