Learn Basic Algorithmic Thinking by Building a Number Sorter - Step 16

Tell us what’s happening:

Hi, I don’t know why my current code is not working…

Your code so far

<!-- file: index.html -->

/* file: script.js */
// User Editable Region

const bubbleSort = ([]) => {};

// User Editable Region
/* file: styles.css */

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/131.0.0.0 Safari/537.36

Challenge Information:

Learn Basic Algorithmic Thinking by Building a Number Sorter - Step 16

You should declare an empty arrow function with array parameter.

const arrowFunc = array => {}

1 Like