# Change Correctly determine the change to be given using the least number of coins. The solution will need to accept a value of change to be given and an array of coin denominations. The program returns the array of coin denominations to produce the correct amount of change. For example, if change for 37 cents is required from coins with the denominations of 1, 5, 10 and 25 then the result is an array with the values: 1, 1, 10 and 25. ## Setup Go through the setup instructions for JavaScript to install the necessary dependencies: http://exercism.io/languages/javascript/installation ## Making the Test Suite Pass Execute the tests with: jasmine .spec.js Replace `` with the name of the current exercise. E.g., to test the Hello World exercise: jasmine hello-world.spec.js In many test suites all but the first test have been skipped. Once you get a test passing, you can unskip the next one by changing `xit` to `it`. ## Submitting Incomplete Solutions It's possible to submit an incomplete solution so you can see how others have completed the exercise.