The ease() or linear() methods generate one value. If you look at the method generated by the Expression Language Menu you will see something like this:
ease(t, tMin, tMax, value1, value2)
Let's break that down. Inside the parentheses, t is a number. tMin is the minimum value that number is going to be, tMax is the maximum value for t. When you are using the Keyframe Assistant to Convert Audio to Keyframes you generally define t like this and then define a valud (v) for the ease method.
t = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider");
v = ease(t, tMin, tMax, value1, value2);
To figure out what values you should be using for tMin and tMax it is a good idea to pick the ("Both Channels")("Slider") in the graph editor looking at only the value graph and choose the minimum and maximum values you want to use to trigger your effect. Here's what a typical graph of the Both Channels Slider would look like:

This music swells from zero to a maximum value of about 55. I want the start of my animation to happen at about 8 and the maximum value to happen at about 43 so those would be my tMin and tMax values. I am applying this effect to scale. Scale is always an array of at least 2 numbers, but if the layer is 3D then there are 3 values. To fix the expression error I need to add the values generated by the ease() method into an array and set a minimum and maximum scale value for value1 and value2. I don't want to go above 100% scale so that will be the value for value2, and I don't want to go below 60% (your choice here) so that will be the value for value1. We're almost done. So far the expression looks like this:

I still have an error because I have not generated the array. For this project, I want to only scale in Y so the layer grows from the bottom in time with the music. I set the anchor point at the bottom of the layer in the center and then complete my array like this:
t = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider");
v = ease(t, 8, 43, 60, 100);
[100, v]
I hope that makes sense. If you are manipulating color you will have a 4 value array. Position, Scale, and Anchor Point have 2 or 3 values, Rotation and opacity only have one so no array is needed.
The other option for the ease or linear method is ease(t, value1, value2) which does not give you the ability to scale the value. This is the method that needs 3 arguments, the previous example needs 5.