Let's look at F# syntax!
                
                    This is how we create an array:
                        
let myArray = [|1; 2; 3|]
                 
                
                    This is how we create a list:
                        
let myList = [1; 2; 3]
                 
                
                    This is how we create a sequence:
                        
let mySequence = seq { 1..3 }
                 
                
                    Question! 
 Which is the correct syntax to define a list?
                
                
                    
                        - let myList = [|1; 2; 3|] 
- let myList = seq { 1..3 }
- let myList = [1; 2; 3] 
 
                
                    Good job!