Design a flowchart using Visual Logic for the following:

A program that accepts a candy name (for example, “ chocolate-covered blueberries”), price per pound, and number of pounds sold in the average month, and displays the item’s data only if it is a best-selling item. Best-selling items are those that sell more than 2,000 pounds per month.
A program that accepts candy data continuously until a sentinel value is entered and displays a list of high-priced, best-selling items. High-priced items are those that sell for $10 per pound or more.
Identify outcomes in Visual Logic the lowest-selling items (those that sell 200 pounds or less). This way, owners can decide if they want to put those items on sale, lower their price, discontinue the item, etc.
Identify outcomes in Visual Logic the items that generate the most income. In other words, multiply the price per pound times the number of pounds sold per month, and list items that generate $6,000 or more per month

To design a flowchart using Visual Logic for the given scenarios, we can break down the problem into multiple steps. Here's how you can design the flowcharts:

Flowchart for the first scenario: A program that displays data for best-selling items.

Step 1: Start
Step 2: Input candy name
Step 3: Input the price per pound
Step 4: Input the number of pounds sold in the average month
Step 5: Check if the number of pounds sold is greater than 2,000
Step 6: If true, display the candy data
Step 7: Stop

Flowchart for the second scenario: A program that displays a list of high-priced, best-selling items.

Step 1: Start
Step 2: Input candy name
Step 3: Input the price per pound
Step 4: Input the number of pounds sold in the average month
Step 5: Check if the number of pounds sold is greater than 2,000
Step 6: Check if the price per pound is $10 or more
Step 7: If true for both conditions, display the candy data
Step 8: Repeat steps 2-7 until the sentinel value is entered
Step 9: Stop

Flowchart for identifying the lowest-selling items:

Step 1: Start
Step 2: Input candy name
Step 3: Input the price per pound
Step 4: Input the number of pounds sold in the average month
Step 5: Check if the number of pounds sold is 200 or less
Step 6: If true, display the candy data
Step 7: Stop

Flowchart for identifying the items that generate the most income:

Step 1: Start
Step 2: Input candy name
Step 3: Input the price per pound
Step 4: Input the number of pounds sold in the average month
Step 5: Calculate the income by multiplying the price per pound by the number of pounds sold per month
Step 6: Check if the income is $6,000 or more
Step 7: If true, display the candy data
Step 8: Stop

Remember, these flowcharts are just a visualization of the steps required to solve the problem. You can use any Visual Logic software or tool to create the flowcharts based on these steps.