DRAG DROP
A company asks you to create a function that displays loan amounts to their customers.
You must create the function by using JavaScript to meet the following requirements:
Display three different loan amounts to each customer.
Display loan amounts in order starting with the greatest amount and ending with the least amount.
You need to implement the function.
How should you complete the relevant code? (To answer, drag the appropriate command or
commands to the correct location or locations in the answer area. Use only commands that apply.)

There are actually two correct answers to this. The one posted and also:
var loanAmount = 400;
snowAnotherLoanAmount();
var loanAmount = 1000;
var loanAmount = 800;
0
0
https://jsfiddle.net/tavo2mzb/
0
0