make a program that will input 6 numbers abd output the highest number and lowest number

To create a program that inputs 6 numbers and outputs the highest and lowest numbers, you can use any programming language of your choice. In this example, I'll provide a solution using Python:

```python
numbers = []

# Input 6 numbers from the user
for i in range(6):
num = int(input("Enter a number: "))
numbers.append(num)

# Find the highest and lowest numbers
highest = max(numbers)
lowest = min(numbers)

# Output the highest and lowest numbers
print("Highest number:", highest)
print("Lowest number:", lowest)
```

Here's how this program works:

1. We initialize an empty list called `numbers` to store the user inputs.
2. We use a for loop to ask the user for 6 numbers. The user input is converted to an integer using the `int()` function and added to the `numbers` list using the `append()` method.
3. After all the numbers are entered, we use the `max()` function to find the highest number in the `numbers` list and assign it to the variable `highest`.
4. Similarly, we use the `min()` function to find the lowest number in the `numbers` list and assign it to the variable `lowest`.
5. Finally, we use the `print()` function to output the highest and lowest numbers.

You can run this program in any Python IDE or compiler, and it will prompt you to enter 6 numbers. After you provide the inputs, it will display the highest and lowest numbers as the output.