Trying to use an $(eval) command to randomly pick a URL from a pastebin to use as the URL for another $(eval) command. I thought the limit was 2 evals in a nest, so I figured this would work, but getting 'Unexpected identifier'.
$(eval const rss = $(urlfetch json $(eval a=$(urlfetch json https://pastebin.com/raw/RCjU9CFF).split("#");a[Math.floor(Math.random() *a.length)])); rss.items[0].description;)
Basic idea is to just have a list of rss2json links with different news outlets so the command randomly outputs news descriptions. There's probably a better way of doing this, but I'm still not sure why this doesn't work.
