Create an array with three elements and print out the second element.
Create an array with five elements and print out the length of the array.
Create an array with four elements and print out each element using a for loop.
Create an array with six elements and print out each element using a forEach loop.
Create an array with three elements and add a fourth element to the end of the array.
Create an array with four elements and remove the second element.
Create an array with five elements and remove the last element.
Create an array with three elements and check if the array includes a specific value.
Create an array with five elements and sort the array in ascending order.
Create an array with five elements and sort the array in descending order.
Create two arrays, concatenate them and print out the resulting array.
Create an array with three elements and convert it to a string.
Create an array with four elements and reverse the order of the elements.
Create an array with five elements and find the index of a specific value.
Create an array with six elements and slice the array to create a new array with the first three elements.
Create an array with six elements and use the map method to double each element.
Create an array with four elements and use the while loop to calculate the sum of all elements.
Create an array with five elements and use the filter method to return only the even numbers.
Create an array with three elements and use the join method to concatenate the elements with a dash (-) separator.
Create two arrays with three elements each and use the concat method to combine them into a new array.