Maybe it helps to have an example. The Laplace distribution has 'fatter' tails than a normal. We can easily generate some data
from a Laplace distribution. The difference of two exponential
distributions with the same rate is Laplace. (See Wikipedia on
'Laplace distribution', third bullet under Related Distributions. if it's not in your text.) Specifically, if $Y_1 \sim Exp(1)$ and, independently, $Y_2 \sim Exp(1),$ then $Y_1 - Y_2$ has a
Laplace distribution with mean $\mu = 0$ and SD $\sigma = \sqrt{2}.$
Below, we simulate a sample of size $n = 1000$ from such a
Laplace distribution and a separate random sample of the same
size from $Norm(\mu = 0,\, \sigma=\sqrt{2})$.
Then we compare the normal Q-Q plots of the Laplace and Normal samples.
y1 = rexp(1000); y2 = rexp(1000); x = y1 - y2 # Laplace sample
z = rnorm(1000, 0, sqrt(2))
par(mfrow=c(1,2)) # enables side-by-side plots
qqnorm(x, datax=T, main="Normal QQ-Plot of Laplace Data")
qqnorm(z, datax=T, main="Normal QQ-plot of Normal Data")
par(mfrow=c(1,1)) # return to single-panel plots

As anticipated the points on the normal probability plot (normal
QQ-plot) of normal data on the right fall pretty much in a straight
line. However, the points from the Laplace sample follow an S-shaped
curve with straggling points far the the left near the bottom and far to the right near the to top.
In case it helps you to visualize the relatively heavy tails of the Laplace distribution, here are histograms of these two samples.
(The minimum and maximum of the Laplace sample are approximately
-7.6 and 7.4, respectively. For the Normal sample the extremes are
approximately -4.8 and 4.1.)

Addendum: In response to a comment, I have added graphs of
PDFs of normal and Laplace distributions with 0 means and
equal standard deviations. If you look closely you will see
that the normal PDF (black) is below the Laplace PDF (blue) in the far tails.
