HELP attempt to concatenate global 'scene name' (a nil value)

Error: attempt to concatenate global ‘scene name’ (a nil value) what can ido?


local composer = require(“composer”)

local scene = composer.newScene()

local function gotoGame()

end

local function gotoHighScores()

    composer.gotoScene(“highscores”)

end

function scene:create(event) 

    local sceneGroup = self.view

    local background = display.newImageRect(sceneGroup, “assets/background.jpg”, 800, 1400)

    background.x = display.contentCenterX

    background.y = display.contentCenterY        

    local title = display.newImageRect(sceneGroup, “play.png”, 500, 80)

    title.x = display.contentCenterX

    title.y = 200

    local text = display.newText(scenegroup, “logo.jpg” )

    local gameText = display.newText(group, “Play”, display.contentCenterX, 700, nill, 44)

    local highScoreText = display.newImageText(sceneGroup, “Highscore”, display.contentCenterX, 810, nil,44)

    gameText:addEventListener(“tap”, gotoGame)

    highScoreText:addEventListener(“tap”, gotoHighScores)

end

local composer = require( “composer” )

local scene = composer.newScene()

  1. Welcome to the community.
     
  2. Only post questions once.  Multiple postings is a violation and a waste. Those of us who answer questions will see a single posting.  We are actually MORE likely to ignore a multi-post than to answer it.  
     
    Please close/delete this post. 
     
    I will answer you here:
     
  3. Please format your code with code blocks:
    formatyourcode.jpg
     
  4. Let me take a look and post back…
  1. Welcome to the community.
     
  2. Only post questions once.  Multiple postings is a violation and a waste. Those of us who answer questions will see a single posting.  We are actually MORE likely to ignore a multi-post than to answer it.  
     
    Please close/delete this post. 
     
    I will answer you here:
     
  3. Please format your code with code blocks:
    formatyourcode.jpg
     
  4. Let me take a look and post back…