Alright, I see where you are having troubles now.
Vectors are not like standard numbers that you have been dealing with up until now. They have both a value, and a direction. Therefore, in order to add them, you have to take both into consideration.
First, you need to set up a coordinate system. For this problem it is simple. We can simply call east-west the x-direction and we can call north-south the y-direction.
Now comes the difference between vectors and non-vectors. Different directions cannot simply be added together. You have to do a procedure to separate the directions, which is called breaking the vector into its components.
The first number is 4 m/s west. Since our east-west is on the x-axis, this vector only has one component: -4 m/s on the x-axis (the x-direction is also called the i direction, therefore it can also be written as -4i).
However, the second number is partially in the x-axis and partially on the y-direction. Therefore for this one, we must break it into components in order to add it. Northwest means the vector is at a 45 degree angle between the x-direction and y-direction. If you draw this vector out, it will be much easier to see. In order to find the x and y directions, you will have to use trig functions with the angle and the 2 m/s hypotenuse. You should get (1.41i + 1.41j) for the components. (With j being the y-direction)
When you add these numbers, remember that only the same direction can be added together.
Try to come up with these numbers, and if you need additional help, please don't hesitate to post.