You will be given a problem where you are given a stack of test scores to process.   You will write and English set of directions telling precisely how to solve the problem.  You will then translate this set of English directions into JavaScript code.   You will be allowed minor syntax problems, but the program should be close to working.   In order to pass the competency,  you must have the program correct.   You task is to pass this competency multiple times.  This will be a major part of your Evaluations.   Failure to pass this competency will result in a loss of credit.   You will have 6 weeks to work on this task.

Example Problem:   Given a stack of test scores, go through them and for each score below 50, output this to the user and get this person’s name.   After all of the scores have been processed, print the average of all of the even scored, the highest odd score, and the number of scores in the 80s.

Answer #1:  English (approximate)

JavaScript:  Final Answer