Is there a way to convert seconds into minutes & seconds?

You can build it yourself. The only tricky part is for it to display 12 min 7 sec as 12:07, instead of 12:7 because you cannot add a zero in front of an integer.

For that you can convert the integer to string & add a ‘0’ in front if the value is 9 or below.