Create a program that determine the shipping cost for an order based on the following table:

From
$0.00
$20.00
$50.00
$75.00

To
$19.99
$49.99
$79.99
$1000.00

Price
$2.95
$3.95
$4.95
Free

To create a program that determines the shipping cost for an order based on the given table, you can follow these steps:

1. Define the ranges for both the "From" and "To" values in the table.
- From: [$0.00, $20.00, $50.00, $75.00]
- To: [$19.99, $49.99, $79.99, $1000.00]

2. Define the corresponding shipping costs for each range.
- Price: [$2.95, $3.95, $4.95, Free]

3. Take user input for the order value.
- Let's say the user entered an order value of $40.00.

4. Compare the order value with the ranges to determine the appropriate shipping cost.
- In this case, $40.00 falls between $20.00 and $50.00.

5. Retrieve the corresponding shipping cost for the determined range.
- The shipping cost for the range $20.00 - $50.00 is $3.95.

6. Display the shipping cost to the user.
- Output: The shipping cost for an order value of $40.00 is $3.95.

By following these steps and implementing the logic in your preferred programming language, you can create a program that determines the shipping cost for an order based on the given table.