// Array :- It is collection more the single value inside an variable
// join(): it join the array into an string
// array.join("here you can give the separator");
const arr1=[1,2,3,"maximum"];
const joined =arr1.join("");
console.log(joined);
let rsult=arr1.join("hii ");
console.log(rsult);