Your data does look right. You might want to do a couple things to improve how it looks.
1. The FFT function has an input called shift?, set this to TRUE to rearrange the output of the FFT to something more familiar to you.
2. The FFT output is complex numbers, add a complex to magnitude/phase function to see the magnitude of the spectrum.
3. Since the data is unsigned, all the data is positive and therefore the FFT will have a large peak in the middle for the average value of the data. You can convert the data to signed 32-bit and then subtract out 32767 from all the points to eliminate the DC component.
See attached
Randall Pursley