Set Uniqueness and OrderingIn the following problem, we use the Set object and spread syntax to create a new array. What gets logged (to consider: Are items forced to be unique? Are they sorted?) const arr = [...new Set([3, 1, 2, 3, 4])]; console.log(arr.length, arr[2]); Select one:5 25 34 24 3Submit