Array.of(1, 2, 3)
Array.of("one", "two", "three")
Array.from(Array.of(1, 2, 3))
Array.from("abc")
Array.from([1,2,3], function(x) {return x * 10})