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

Tell us what’s happening:

Sorry, your code does not pass. Don’t give up.

You should chain the map method directly on your array.

Your code so far

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

/* file: styles.css */

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

const sortInputArray = (event) => {
  event.preventDefault();
  const inputValues = [...document.getElementsByClassName("values-dropdown")];
  const values = inputValues.map(dropdown => dropdown.value);
};


// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) 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 7

Please Tell us what’s happening in your own words.

Learning to describe problems is hard, but it is an important part of learning how to code.

Also, the more you say, the more we can help!

You aren’t chaining the .map() method directly on the array.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.