I want to make a list of test emails to test a function
Array("test1@email.com", "test2@email.com");
I want to make about 2000 entries on this Array with the email addresses including an incrementing number, can I do this easily with Emmet?
You can do it with this script:
Array("test{1..2000}@email.com");