Copying results to clipboard

Hey, there is probably a very easy way around this that I am overlooking, but I am trying to copy the results of my script to the clipboard however the results are numbers, so when I call Pasteboard.copy() I get an error saying that it excepted a string.

How then would I copy a number result?

Thanks!

Convert your number to a string.

E.g.

let intTest = 12345;
Pasteboard.copy(intTest.toString());