Arrays and Loops.
Using arrays and loops, create a table that lists the brands of five shoe companies next to the (fictional) worth of each company. Store the information (shoe company names and associated value) using arrays. Using either type of loop, add the HTML elements for a table (<table>, <tr>, <th>, <td>, etc.) to the document. The easiest way to store the data is in two separate arrays, where each numerical index of one array associates to the other. You could also use a multi-dimensional array or object.