How to add a counter to items in a quick.db table?
db.set('myItems', ['Blue', 'red'])
const content = db.get('myItems')
channel.send(content)
I get the output as:
Blue
Black
Red
I expect the output to be like this:
1 Blue
2 Black
3 Red
How to make the output appear with numbers? P.S Not adding them manually, lol.