Rename Canvas in a special format/order?

Hey all, looking for some guidance please on this. I would like to modify this code so it would take the existing name of a canvas and prefix it with a number in this type of format ‘##.##’. So the end result would be:

Old canvas name:
Design

New canvas name:
01-00-Design

The code I have currently just renames each Canvas to Canvas 1 … 2… 3… etc.

Code:
CanvasLib.renameEveryCanvasToMatchOrder = function(){
console.log(‘renameEveryCanvasToMatchOrder()’)
cvss = canvases.reverse()
for(i = 0; i < cvss.length; i++){
index = i + 1
canvases[i].name = 'Canvas ’ + index
}
}