How can I increment a variable suffix while using console.log?
For instance - printing delta0-2
var delta0 = "omega"
var delta1 = "orion"
var delta2 = "kiwi"
I was trying to use a for loop to add a number to the end of "delta" but that doesn't seem to work? For instance this would be for a long list of items. I just want to "print all variables".
Arrayfor delta?