I'm trying to push an array into the same array in javascript, But it doesn't seem to be working. Here is my code so far:
var arr = ["Hello", "World!"]
arr.push(arr);
console.log(arr);
Expected output: ["Hello", "World!", ["Hello", "World!"]]
Does somebody know what the error in my code is?