[LOG]: "Check array length true"
[LOG]: "Add and remove elements from the end of the array 1,2,3"
[LOG]: "Add and remove elements from the beginning of the array 4,1,2,3"
[LOG]: "Get a new array from the original array range 1,2"
[LOG]: "Original array 4,1,2,3 after removing 2 elements at index 1 1,2, original array 4,3"
[LOG]: "Elements removed from array 4,1,2,3 and new elements added 1,2 resulting in 4,11,22,3"
[LOG]: "Index of element 22 in array 22,33,4,11,22,3 is 0"
[LOG]: "Index of element 22 starting from index 1 in array 22,33,4,11,22,3 is 4"
[LOG]: "Array 22,33,4,11,22,3 after dictionary sorting 11,22,22,3,33,4"
[LOG]: "Array 11,22,22,3,33,4 expanded to specified variables by index position 11 22"
[LOG]: "Splitting string a,b,c,d,e,f,g by delimiter , into an array a,b,c,d,e,f,g, with a length of 7"
[LOG]: "Joining array 11,22,22,3,33,4 together with delimiter % 11%22%22%3%33%4"
[LOG]: "If the array is not reassigned, it is best to use the const declaration"