I think I'm getting close, now there are no memory errors and it outputs something, but it outputs the order I inputted.
#include <iostream>
using namespace std;
void quickSort(int numbers[], int array_size);
void randQuickSort(int numbers[], int left, int right);
int main()
{...