The first 10 numbers in the Fibonacci sequence are:0, 1, 1, 2, 3, 5, 8, 13, 21, 34How it works: • The sequence starts with 0 and 1. • Each next number is the sum of the two previous numbers.Example: • 0 + 1 = 1 • 1 + 1 = 2 • 1 + 2 = 3 • 2 + 3 = 5 • 3 + 5 = 8 • and so on…