I have an existing array, and I want to output it by combining 2 strings to make that array. For example:
array = [1, 2, 3];
a = "arr";
b = "ay";
console.log(a + b);
This code outputs array, but I want this code to output [1, 2, 3]. How do I do that?