Essential JavaScript

Going Further

Array Builder Kata

Given three values, return an array that contains those values in order.

For example:

const array = buildArray('My', 'First', 'Array'); console.log(array); // ["My", "First", "Array"]

Code Editor

Click "Run Tests" to execute your function and see the test results below.

Test Results

Run your code to see test results

Console Output

// Console output will appear here...

0 output lines